Viewing profile — sbking
sbking
HN member- Joined
- Wed, Oct 29, 2014, 6:12 AM UTC
- HN karma
- 21
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About sbking
No profile information was provided.
Recent public activity
-
comment
Comment #8527248
Eventually. It's on the roadmap: https://trello.com/c/sWcxRwxN/31-redis-support One of the core developers seems to be working on it: https://github.com/meteor/redis-livedata
-
comment
Comment #8527241
In production in bundles and minifies all JS and HTML into one file that is sent to the client. Then all further communication happens with JSON over WebSockets/SockJS. If changes …
-
comment
Comment #8527155
It seems like too much magic until you've been exposed to it a bit. It's actually pretty simple to visualize what's going on under the hood, but it takes a bit to click. Reading th…
-
comment
Comment #8527123
You need to be running the Node.js Meteor application. The client relies on DDP rather than REST and right now Meteor is the only server framework using DDP. There is, however, an …
-
comment
Comment #8527048
Another point to add is Meteor's EJSON, which is a simple spec for defining how any complex, constructed or factory-made JavaScript objects should be serialized to JSON, and then d…
-
comment
Comment #8526286
It is a full stack web framework, where you write in 100% JavaScript on the client and server, sharing much of the code with isomorphic APIs. It is not meant to be used on top of R…
-
comment
Comment #8526215
More that it fully simulates the mongo api. When you perform an insert/update on the client, the following will happen: 1. The command will be sent to the server. 2. The command wi…
-
comment
Comment #8526105
The reasons I prefer Meteor (in no particular order): * Fully automated build chain. No matter what kind of preprocessors I use, all my code is compiled, bundled, and hot reloaded …
-
comment
Comment #8525973
It was fixed about two years ago in October of 2012, when they added the accounts system and allow/deny rules. Since then they've added additional security features such as the bro…
-
comment
Comment #8525962
Meteor doesn't use two-way data binding. You have template instances, which are wrapped domranges based on handlebars templates that call helper functions (one way binding). You th…
-
comment
Comment #8525833
No, it's a full-stack framework, using Node.js on the server and sending down a client app bundle containing all HTML templates and JS. The client and server then communicate exclu…