Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/glittershark/meteor-express
- Owner: glittershark
- License: mit
- Created: 2014-04-07T01:46:51.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-25T16:24:20.000Z (over 9 years ago)
- Last Synced: 2024-04-14T15:12:49.032Z (9 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
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.