# Igo.js

![Build Status](https://github.com/igocreate/igo/actions/workflows/node.js.yml/badge.svg)

Igo is a Web Framework for Node.js that comes with:
- Pre-configured Express, middlewares, and Dust
- Pre-configured [Webpack](https://webpack.js.org) and [Nodemon](https://nodemon.io/)
- Full-featured testing environment based on [Mocha](https://mochajs.org/)
- Basic ORM for MySQL

All remarks, suggestions, PRs are welcome! 💕

# 🚀 Getting Started

Before using Igo, you need to install Node.js (>=16.x).
Then, you can easily create a new project via the `igo` CLI.

```sh
npm install -g igo
igo create myproject
cd myproject
npm install
npm start
```

Open [http://localhost:3000](http://localhost:3000) and start coding (and reading [the docs](/docs/README.md)).

Type ```mocha``` to run tests.

# Documentation

[Check our website](https://igocreate.github.io/igo/)
