hono-nx
v0.0.6
Published
An Nx plugin to generate Hono atppplications within an Nx monorepo.
Downloads
39
Readme
Hono NX
Hono NX is an Nx plugin for generating Hono application starters.
Currently, it only supports the Node.js runtime.
Installation
nx add hono-nxUsage
- Generate an Hono application on your NX workspace:
nx g hono-nx:app- When you run the command you must provide information like the application name, directory (default is
packages), and port (default is3000). - Once generated, you can serve your app with:
nx serve <app-name>- Build for production:
nx build <app-name>