Package Exports
- micro
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (micro) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Micro — Async ES6 HTTP microservices
Features
- Easy. Designed for usage with
async
andawait
(more) - Fast. Ultra-high performance (even JSON parsing is opt-in).
- Micro. The whole project is ~100 lines of code.
- Agile. Super easy deployment and containerization.
- Simple. Oriented for single purpose modules (function).
- Explicit. No middleware. Modules declare all dependencies.
- Standard. Just HTTP!
- Lightweight. The package is small and the
async
transpilation fast and transparent
Example
The following example sleep.js
will wait before responding (without blocking!)
const { send } = require('micro');
const sleep = require('then-sleep');
module.exports = async function (req, res) {
await sleep(500);
send(res, 200, 'Ready!');
}
To run the microservice on port 3000
, use the micro
command:
$ micro -p 3000 sleep.js
To run the microservice on port 3000
and localhost instead of listening on every interface, use the micro
command:
$ micro -p 3000 -H localhost sleep.js
Documentation
Installation
Note: micro
requires Node 6.0.0
or later
Install from NPM:
$ npm init
$ npm install micro --save
Then in your package.json
:
"main": "index.js",
"scripts": {
"start": "micro -p 3000"
}
Then write your index.js
(see above for an example). To run your
app and make it listen on http://localhost:3000
run:
$ npm start
API
micro
micro(fn, { onError = null })
This function is exposed as the
default
export.Use
require('micro')
.Returns a
http.Server
that uses the providedfn
as the request handler.The supplied function is run with
await
. It can beasync
!The
onError
function is invoked withreq, res, err
if supplied (see Error Handling)Example:
const micro = require('micro'); const sleep = require('then-sleep'); const srv = micro(async function (req, res) { await sleep(500); res.writeHead(200); res.end('woot'); }); srv.listen(3000);
json
json(req, { limit = '1mb' })
Use
require('micro').json
.Buffers and parses the incoming body and returns it.
Exposes an
async
function that can be run withawait
.limit
is how much data is aggregated before parsing at max. Otherwise, anError
is thrown withstatusCode
set to413
(see Error Handling). It can be aNumber
of bytes or a string like'1mb'
.If JSON parsing fails, an
Error
is thrown withstatusCode
set to400
(see Error Handling)Example:
const { json, send } = require('micro'); export default async function (req, res) { const data = await json(req); console.log(data.price); send(res, 200); }
send
send(res, statusCode, data = null)
Use
require('micro').send
.statusCode
is aNumber
with the HTTP error code, and must always be supplied.If
data
is supplied it is sent in the response. Different input types are processed appropriately, andContent-Type
andContent-Length
are automatically set.Stream
:data
is piped as anoctet-stream
. Note: it is your responsibility to handle theerror
event in this case (usually, simply logging the error and aborting the response is enough).Buffer
:data
is written as anoctet-stream
.object
:data
is serialized as JSON.string
:data
is written as-is.
If JSON serialization fails (for example, if a cyclical reference is found), a
400
error is thrown. See Error Handling.Example
const { send } = require('micro'); export default async function (req, res) { send(res, 400, { error: 'Please use a valid email' }); }
return
return val;
Returning
val
from your function is shorthand for:send(res, 200, val)
.Example
export default function (req, res) { return {message: 'Hello!'}; }
Returning a promise works as well!
Example
const sleep = require('then-sleep'); export default async function(req, res) => { return new Promise(async (resolve) => { await sleep(100); resolve('I Promised'); }); }
sendError
send(req, res, error)
- Use
require('micro').sendError
. - Used as the default handler for
onError
. - Automatically sets the status code of the response based on
error.statusCode
. - Sends the
error.message
as the body. - During development (when
NODE_ENV
is set to'development'
), stacks are printed out withconsole.error
and also sent in responses. - Usually, you don't need to invoke this method yourself, as you can use the built-in error handling flow with
throw
.
createError
createError(code, msg, orig)
- Use
require('micro').createError
. - Creates an error object with a
statusCode
. - Useful for easily throwing errors with HTTP status codes, which are interpreted by the built-in error handling.
orig
setserror.originalError
which identifies the original error (if any).
Error handling
Micro allows you to write robust microservices. This is accomplished primarily by bringing sanity back to error handling and avoiding callback soup.
If an error is thrown and not caught by you, the response will automatically be 500
. Important: during development mode (if the env variable NODE_ENV
is 'development'
), error stacks will be printed as console.error
and included in the responses.
If the Error
object that's thrown contains a statusCode
property, that's used as the HTTP code to be sent. Let's say you want to write a rate limiting module:
const rateLimit = require('my-rate-limit');
export default async function (req, res) {
await rateLimit(req);
// … your code
}
If the API endpoint is abused, it can throw an error like so:
if (tooMany) {
const err = new Error('Rate limit exceeded');
err.statusCode = 429;
throw err;
}
Alternatively you can use createError
as described above.
if (tooMany) {
throw createError(429, 'Rate limit exceeded')
}
The nice thing about this model is that the statusCode
is merely a suggestion. The user can override it:
try {
await rateLimit(req);
} catch (err) {
if (429 == err.statusCode) {
// perhaps send 500 instead?
send(res, 500);
}
}
If the error is based on another error that Micro caught, like a JSON.parse
exception, then originalError
will point to it.
If a generic error is caught, the status will be set to 500
.
In order to set up your own error handling mechanism, you can pass a custom onError
function to micro:
const myErrorHandler = async (req, res, err) => {
// your own logging here
res.writeHead(500);
res.end('error!');
};
micro(handler, { onError: myErrorHandler });
However, generally you want to instead use simple composition:
export default handleErrors(async (req, res) => {
throw new Error('What happened here?');
});
function handleErrors (fn) {
return async function (req, res) {
try {
return await fn(req, res);
} catch (err) {
console.log(err.stack);
send(res, 500, 'My custom error!');
}
}
}
Testing
Micro makes tests compact and a pleasure to read and write. We recommend ava, a highly parallel micro test framework with built-in support for async tests:
const test = require('ava');
const listen = require('./listen');
const send = require('micro').send;
const request = require('request-promise');
test('my endpoint', async t => {
const fn = async function (req, res) {
send(res, 200, { test: 'woot' });
};
const url = await listen(fn);
const body = await request(url);
t.same(body.test, 'woot');
});
Look at the test-listen for a function that returns a URL with an ephemeral port every time it's called.
Transpilation
We now use async-to-gen,
so that the only transformation that happens is converting async
and await
to generators.
If you want to do it manually, you can! micro(1)
is idempotent and
should not interfere.
micro
exclusively supports Node 6+ to avoid a big transpilation
pipeline. async-to-gen
is fast and can be distributed with
the main micro
package due to its small size.
Deployment
You can use the micro
CLI for npm start
:
{
"name": "my-microservice",
"dependencies": {
"micro": "x.y.z"
},
"main": "microservice.js",
"scripts": {
"start": "micro -p 3000"
}
}
Then simply run npm start
!
Contribute
- Fork this repository to your own GitHub account and then clone it to your local device
- Link the package to the global module directory:
npm link
- Transpile the source code and watch for changes:
npm start
- Within the module you want to test your local development instance of micro, just link it to the dependencies:
npm link micro
. Instead of the default one from npm, node will now use your clone of micro!
Credits
- Thanks Tom Yandell and Richard Hodgson for donating the
micro
npm name. - Copyright © 2016 Zeit, Inc and project authors.
- Licensed under MIT.
- ▲