# Minus, Express for minimalists.

## Create an app:

```
require('minus');

get('/', function(req, res) {
	res.render('index');
});

```

Yes, **The server will automatically start**. No need to configure a static directory, or anything.

## Let's say you do want to configure it:

```
set('view engine', 'ejs');

use(express.static(__dirname + 'assets'))

```