An open API service indexing awesome lists of open source software.

https://github.com/unitech/express-repl

Interact with express internal data (routes, settings...) with an auto reconnect remote repl
https://github.com/unitech/express-repl

Last synced: 10 months ago
JSON representation

Interact with express internal data (routes, settings...) with an auto reconnect remote repl

Awesome Lists containing this project

README

          

# Express remote REPL

Remote REPL with infinite connection (can be used with supervisor)

## Usage

In the app.js :

```
require('express-repl')(app);
```

Connect to repl :
```
./bin/repl
```

Commands :

```
app
routes
```
## Example

```

var express = require('express')
, http = require('http');

var app = express();

app.configure(function(){
app.set('port', process.env.PORT || 3000);
});

app.get('/', function(req, res) {
res.send('Ok');
});

// Activate remote repl
require('express-repl')(app);

http.createServer(app).listen(app.get('port'), function(){
console.log("Express server listening on port " + app.get('port'));
});

```