crox-express
v0.1.1
Published
`crox` shim for `express` web framework
Downloads
0
Readme
crox-express
A shim for crox
template engine combined in express
web framework
Installation
Of course you should have express installed. Then just install crox-express
shim:
npm install crox-express
or
if you have cnpm, install via cnpm
:
cnpm install crox-express
Attention: you don't have to install crox
since it is already wrapped in crox-express
!
Usage
Quick start:
var app = express();
require('crox-express')(app);
app.set('view engine', 'crox');
...
app.listen(3000);