generator-micro-rest
v1.0.12
Published
generate simple server with restify
Downloads
5
Maintainers
Readme
generator-micro-rest
generate simple server with restify
Why use restify and not express?
From API Guide | Restify Documentation.
I get asked this more than anything else, so I'll just get it out of the way up front. Express' use case is targeted at browser applications and contains a lot of functionality, such as templating and rendering, to support that. Restify does not.
Restify exists to let you build "strict" API services that are maintanable and observable. Restify comes with automatic DTrace support for all your handlers, if you're running on a platform that supports DTrace.
In short, I wrote restify as I needed a framework that gave me absolute control over interactions with HTTP and full observability into the latency and characteristics of my applications. If you don't need that, or don't care about those aspect(s), then it's probably not for you.
Installation
First, install Yeoman and generator-micro-rest using npm (we assume you have pre-installed node.js.
npm install -g yo generator-micro-rest
Then generate your new project:
yo micro-rest
Getting To Know Yeoman
- Yeoman has a heart of gold.
- Yeoman is a person with feelings and opinions, but is very easy to work with.
- Yeoman can be too opinionated at times but is easily convinced not to be.
- Feel free to learn more about Yeoman.
License
ISC © akungery