now-micro
v0.4.0
Published
The missing Micro builder for Now 2.0
Downloads
4
Readme
Now Micro
Proper Micro builder for Now 2.0
Purpose
As of now, @now/node
lambdas resemble a lot a Micro environment, but it is just not that, which causes quite a lot of unexpected results.
Installation
yarn add now-micro micro
Gotcha: so far we found no way to inject
micro
dependency during the build process, so it MUST be a dependency of your lambda, thus why we added it to the above command ;)
Usage
Use now-micro
in your builders on now.json
:
{
"version": 2,
"builds": [{ "src": "file.js", "use": "now-micro" }]
}
Develop your lambdas as a fully Micro compatible function:
// ex. showing async usage and value returning (no res.end):
module.exports = async req => Promise.resolve(`Some result`)