# node-echo-server **Repository Path**: mirrors_jpillora/node-echo-server ## Basic Information - **Project Name**: node-echo-server - **Description**: Responds with the JSONified Request - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README :warning: This project is no longer being maintained. It has been rewritten in Go (https://github.com/jpillora/go-echo-server) and supports similar features. --- # node-echo-server ## Summary An HTTP which responds with the request in JSON ## Private Usage ``` npm install -g echo-server ``` ## Public Usage * Git clone * Add heroku remote * Push Currently running at http://echo.jpillora.com ## Example Start server ``` $ echo-server 5000 listening on 5000... ``` Make your requests ``` $ curl http://localhost:5000/foo/bar { "ip": "127.0.0.1", "method": "GET", "url": "/foo/bar", "body": "", "headers": { "user-agent": "curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8x zlib/1.2.5", "host": "localhost:5000", "accept": "*/*" }, "meta": { "total": 1, "live": 1 } } ``` ## Simulate delays Include `/delay/