Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/glittershark/meteor-express

The Express web framework packaged for Meteor
https://github.com/glittershark/meteor-express

Last synced: 3 months ago
JSON representation

The Express web framework packaged for Meteor

Awesome Lists containing this project

README

        

Meteor Express
==============
The [Express](http://expressjs.com) web framework packaged for [Meteor](http://www.meteor.com)

Installation
------------
```
mrt add meteor-express
npm install --save express
```

Usage
-----

```javascript
if (Meteor.isServer) {
app = Express();
app.get('/hello/world', function(req, res) {
res.send(200, "Hello, World!");
});
}
```

Refer to the Express documentation for advanced usage.