# express-repl **Repository Path**: mirrors_Unitech/express-repl ## Basic Information - **Project Name**: express-repl - **Description**: Interact with express internal data (routes, settings...) with an auto reconnect remote repl - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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')); }); ```