Load and run a NovaDev file inside the shell session.
Reference
Commands, structure, and compiler details.
Use this page when you need a quick map of NovaDev commands, shell commands, file layout, compiler pipeline, project architecture, and generated output.
CLI
NovaDev command-line tools.
python nova.py new my_app --frontend Vue --backend Flask --database SQLite
python nova.py run examples/scripts/math_tool.nova
python nova.py shell
python nova.py ir examples/apps/ecommerce_1_1
python nova.py explain examples/apps/ecommerce_1_1
python nova.py validate examples/apps/ecommerce_1_1
python nova.py tokens examples/apps/webshield
python nova.py ast examples/apps/webshield --json
python nova.py lint examples/apps/webshield
python nova.py format examples/apps/webshield --check
python nova.py docs examples/apps/webshield
python nova.py build-ui examples/apps/webshield
python nova.py build-backend examples/apps/webshield
python nova.py build-fullstack examples/apps/webshield
python nova.py dev examples/apps/webshield
python nova.py clean generated/web-shield
python novapm.py doctor
python novapm.py install-language --source .
python novapm.py init-registry
python novapm.py configure-registry https://example.com/nova-packages.json
python novapm.py search ui
python novapm.py install packages/hello-ui
python novapm.py list
python novapm.py info hello-ui
python novapm.py remove hello-ui
python novapm.py pack packages/hello-ui
Shell
Interactive commands inside python shell.py.
Show lexer tokens for a file or project.
Inspect parsed AST output, including JSON mode when supported.
Find common project or syntax issues before generation.
Generate documentation from Nova project declarations.
Generate frontend and backend project files from a NovaDev app.
Compiler Pipeline
How NovaDev thinks about source code.
Lexer
Reads source text and emits tokens for identifiers, keywords, strings, numbers, booleans, nil, operators, punctuation, and comments.
Parser
Converts tokens into AST nodes for programs, expressions, statements, app declarations, pages, tables, routes, workflows, and modules.
Interpreter
Walks the AST, evaluates expressions, stores variables in environments, runs functions, loops, conditions, classes, and print calls.
ProjectIR
Collects app-level declarations into a structured intermediate representation used by project-specific generators.
Generators
Write Vue, Tailwind, Flask, models, routes, workflow hooks, custom files, and docs from the declared project structure.
File Structure
Recommended folders for NovaDev and generated projects.
novadev/
lexer.py
parser.py
ast_nodes.py
interpreter.py
runtime.py
project_ir.py
package_manager.py
nova.py
shell.py
novapm.py
examples/
packages/
docs/
nova website/
generated/my-app/
frontend/
src/
pages/
services/
style.css
package.json
backend/
app.py
models.py
routes.py
workflows.py
modules/
requirements.txt
docs/
project.md
FAQ
Developer questions.
mode custom when the app does not fit a common category. NovaDev should generate only from the tables, pages, workflows, routes, modules, architecture, and custom code you declare.