纯Javascript的Web框架:Meteor

jopen 10年前

Meteor是一个开源的平台用于以少量的时间来构建高质量的Web应用,无论你是一个专家级开发者,还是刚刚入门。

 
纯JavaScript.
Write your entire app in pure JavaScript. All the same APIs are available on the client and the server — including database APIs! — so the same code can easily run in either environment.
</div> </div>
 
实时页面更新
Just write your templates. They automatically update when data in the database changes. No more boilerplate redraw code to write. Supports any templating language.
</div> </div>
 
简洁,强大的数据同步
Write your client code as if it were running on the server and had direct access to the database. No more loading your data from REST endpoints.
</div> </div>
 
Latency compensation.
When a user makes a change, their screen updates immediately — no waiting for the server. If the server rejects their request or executes it differently, the client is patched up with what actually happened.
</div> </div>
 
Hot Code Pushes.
Update your app while users are connected without disturbing them. When you push a new version, the new code is seamlessly injected into each browser frame in which the app is open.
</div> </div>
 
Sensitive code runs in a privileged environment.
Write all of your code in JavaScript (if you want.) The user interface runs in your browser. The sensitive functions run in a privileged server environment.
</div> </div>
 
Fully self-contained application bundles.
One command to compile your entire application into a tarball. Unpack it anywhere there's node.js, run one command, and you're on the air. You're never locked into a particular hosting provider; you have all the code for the platform.
</div> </div>
 
Interoperability.
You can connect anything to Meteor, from native mobile apps to legacy databases to Arduinos. Just implement the simple DDP protocol.
</div> </div>
 
Smart Packages.
Meteor's Smart Packages are actually little programs that can inject code into the client or the server, or even hook into the bundler to preprocess your source. Great care has been taken to give the core Meteor packages the minimal set of dependencies, so you can use your favorite templating, testing, or DOM manipulation frameworks.

项目主页:http://www.open-open.com/lib/view/home/1406517506749

</div> </div> </div>