UNPKG

gorillajs

Version:

A smart development environment designed to easily install and neatly manage web applications. Gorilla JS frees you from the repetitive daily tasks like apps installation, database management, creation of virtual environment, server configuration… And it

11 lines (7 loc) • 190 B
'use strict'; var express = require('express'); var app = express(); app.get('/', function (req, res) { res.send('Another Express.js site built with GorillaJS!'); }); app.listen(80);