NarraLeaf

Init

Create a NarraLeaf project with the skeleton package.

narraleaf init [path] creates a project by delegating to the latest skeleton package.

narraleaf init my-visual-novel

Internally, the command runs:

npx narraleaf-skeleton@latest my-visual-novel

If [path] is omitted, the default path is the current directory.

narraleaf init

After Init

Move into the project directory and start development:

cd my-visual-novel
narraleaf dev

Expected Project Shape

The generated project should contain the required NarraLeaf project files:

package.json
narraleaf.config.js

On this page