TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Poor Man's Firebase: LevelDB, REST, and WebSockets

89 点作者 jonpaul超过 11 年前

7 条评论

nicklovescode超过 11 年前
Would love if someone produced a decent open source firebase-clone with turn-key angularfire integration. I really want to use it, but some of my clients are not OK with having data stored on someone else's server(rationally or not)
评论 #7049473 未加载
nateabele超过 11 年前
&gt; <i>(As an aside, it seems that it would work most of the time in most of environments that I&#x27;d try, but for some reason, it rarely worked in one). So I needed to find a new solution.</i><p>&#x27;Instead of debugging the one environment, I&#x27;ll just reimplement the entire service!&#x27;<p>Obviously. :-)
评论 #7049214 未加载
评论 #7049208 未加载
greencarpet超过 11 年前
I built an npm module with a very similar goal - an open source alternative to FireBase. It&#x27;s open source at <a href="https://npmjs.org/package/waferdb" rel="nofollow">https:&#x2F;&#x2F;npmjs.org&#x2F;package&#x2F;waferdb</a>
yeleti超过 11 年前
This is quite nice.<p>Before we (<a href="https://www.tesla.im" rel="nofollow">https:&#x2F;&#x2F;www.tesla.im</a>) switched to Firebase we had (still have) our own realtime system built with NodeJS, Websockets, Amazon SQS (as backup to ensure messages don&#x27;t get lost) and a RIAK cluster.
评论 #7049243 未加载
rakoo超过 11 年前
I don&#x27;t want to sound negative towards you project, but why not use CouchDB [0], along with TouchDB [1] for mobiles and PouchDB [2] for the browser ?<p>[0] <a href="https://couchdb.apache.org/" rel="nofollow">https:&#x2F;&#x2F;couchdb.apache.org&#x2F;</a><p>[1] <a href="http://touchdb.org/" rel="nofollow">http:&#x2F;&#x2F;touchdb.org&#x2F;</a><p>[2] <a href="http://pouchdb.com/" rel="nofollow">http:&#x2F;&#x2F;pouchdb.com&#x2F;</a>
评论 #7049442 未加载
octernion超过 11 年前
Pretty cool project! I remember the pleasure I got out of (partially) re-implementing the Pusher API.<p>I wonder why real-time features aren&#x27;t more popular? Real-time order status, live-updating maps, the list goes on!
评论 #7049342 未加载
kayoone超过 11 年前
i always thought that firebase should be easy to replicate with some node + express REST + websockets + client code if you plan on doing a bigger longterm project with sensitive data. For smaller projects (experiments, campaign related stuff) firebase should be fine.