create-nextvm
v0.1.4
Published
Scaffold a new NextVM server project. Run via `pnpm create nextvm@latest <name>` or `npm create nextvm@latest <name>`.
Readme
create-nextvm
Bootstrap a new NextVM project with a single command. No global installation required.
# pnpm (recommended)
pnpm create nextvm@latest my-server
# npm
npm create nextvm@latest my-server
# yarn
yarn create nextvm my-serverAfter scaffold:
cd my-server
pnpm install
pnpm devThat's it. Your project is ready with the full NextVM toolchain wired in via local devDependencies — no global state, no version drift.
What this creates
package.jsonwith pinned@nextvm/cli+ framework depsnextvm.config.ts— project surfacetsconfig.json— strict TypeScriptmodules/— empty directory ready for your firstpnpm add nextvmmodule.gitignore— sensible defaults
What this does NOT do
This package is intentionally tiny and only handles the scaffold step.
It does not run pnpm install or nextvm dev for you — keeping the
flow predictable and letting you choose your own package manager.
See also
- NextVM Documentation
@nextvm/cli— the CLI that powerspnpm dev,pnpm build, etc. inside the scaffolded project
