0.3.0 • Published 7 years ago
now-micro-canary v0.3.0
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
microdependency 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`)0.3.0
7 years ago