Feature | Meteor Solution | Alternative Solutions | Description |
---|---|---|---|
Live DB Sync | [livequery][lq] ([mongo-oplog]), [ddp] | RethinkDB, Redis, ShareDB, [npm:mongo-oplog], [firebase], etc. | Push DB updates to client/server. |
Latency Compensation, Optimistic UI | [minimongo][mm] | [RethinkDB][lcr], [mWater/minimongo] (fork, not ws but http, browserify) | Imitate successful db query on client before it is done. |
Isomorphic Code | [isobuild] & isopacks | browserify | Write one code for server/client/mobile. |
Isomorphic Packaging | [isobuild], atmosphere | No more separate packages for server & client. Get bower + npm + mobile. | |
Realtime Connection | ws(websockets), [sockjs] | bare ws, [socket.io], [sockjs] | Push live updates to client. |
Package Management, Ecosystem | atmosphere/isopacks + [hacks] | Webpack, npm, etc. No hacks, use any, you are free. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
** | |
** kyco.eslintrc | |
** ============= | |
** | |
** Based on http://eslint.org/docs/rules/ | |
** | |
** All rules specified in this file are taken from the URL above. We have | |
** included every single rule except for rules posted under the "Removed" | |
** section. |