A curated list of "What are the best..." questions related to development.
All the questions are taken from here
Quality Assurance
| import requests | |
| sites = [ | |
| 'http://www.google.com', | |
| 'http://www.youtube.com', | |
| 'http://www.polimi.it', | |
| 'http://wikipedia.org', | |
| 'http://www.amazon.it', | |
| 'http://www.twitter.com' | |
| ] |
| /* | |
| ** | |
| ** 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. |
A curated list of "What are the best..." questions related to development.
All the questions are taken from here
Quality Assurance
| 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. |