create-neha-app
v1.0.1
Published
Create a new Neha project from official templates
Readme
create-neha-app
Official scaffolder for the Neha programming language. Quickly bootstrap a Neha project from the official templates.
Usage
- Using npm create (recommended):
npm create neha-app@latest my-app- Using npx:
npx create-neha-app@latest my-app- Options:
create-neha-app <app-name> [--template <name>]
# Examples
create-neha-app my-app
create-neha-app my-app --template defaultTemplates
default: Basic web app target withsrc/index.neha,src/index.html,src/style.css,neha.config.js.
After creating the app
cd my-app
npm install
npm run devLocal development (for contributors)
This package looks for the installed neha-lang package. If it cannot be resolved, it falls back to a local sibling (monorepo-style) at ../.. so that you can test it without publishing first.
