now-micro

0.4.0 • Public • Published

Now Micro

Build Status coverage npm version

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`)

Readme

Keywords

Package Sidebar

Install

npm i now-micro

Weekly Downloads

0

Version

0.4.0

License

MIT

Unpacked Size

49 kB

Total Files

15

Last publish

Collaborators

  • lucasconstantino