bin | ||
lib | ||
stages | ||
.editorconfig | ||
.gitignore | ||
.npmignore | ||
.prettierrc | ||
index.js | ||
LICENSE.md | ||
package.json | ||
README.md | ||
yarn.lock |
@terribleplan/next-cloudflare
This is pretty rough right now, but it works and can hopefully used to foster discussion in the next.js project around a different/better/additional serverless interface.
Quickstart
- You must be using my fork of next.js.
git clone https://github.com/terribleplan/next.js
yarn && pushd packages/next-server && npm link && popd && pushd packages/next && npm link && npm link next-server && popd
- Install this package to your project
yarn add @terribleplan/next-cloudflare
- Build things
npx next build && npx next-cloudflare
Usage
This package is usable as an npm module as well as a CLI.
CLI
--input
The project directory that houses the .next build output directory. Defaults to whatever directory the command is invoked from.
This is passed as cwd
to the programmatic API
--output
Where to write the output to. Defaults to cloudflare-bundle.js
in the input directory (which defaults to the current working directory).
API
Usage
const nextCloudflare = require('@terribleplan/next-cloudflare');
const bundleString = await nextCloudflare(options);
console.log(bundleString);
options.cwd
The project directory that houses the .next build output directory. Defaults to process.cwd()
.