@igojs/igo
v6.1.1
Published
Igo is a Node.js Web Framework based on Express
Downloads
1,313
Readme
@igojs/igo
Meta-package for Igo.js. Installs the full stack — server, ORM, template engine, reactive components — in one go.
Install
npm install @igojs/igoThis pulls in:
@igojs/server— Express 5 framework, CLI, mailer, i18n@igojs/db— Active Record-style ORM (MySQL, PostgreSQL)@igojs/dust— Async template engine@igojs/component— Reactive single-file components with SSR
This package has no runtime entry point — require('@igojs/igo') returns nothing. Import the individual packages instead:
const igo = require('@igojs/server');
const { Model } = require('@igojs/db');
const dust = require('@igojs/dust');Quick start
Scaffold a new project:
npx @igojs/server create myproject
cd myproject
npm install
npm startDocumentation
Full documentation: https://igocreate.github.io/igo/
License
ISC
