now-micro-canary

The missing Micro builder for Now 2.0

Usage no npm install needed!

<script type="module">
  import nowMicroCanary from 'https://cdn.skypack.dev/now-micro-canary';
</script>

README

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