├── .gitignore ├── .travis.yml ├── site ├── 404.html └── index.html ├── package.json ├── LICENSE ├── lib └── server.js ├── README.md └── tests └── integration.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "node" 5 | 6 | before_script: 7 | - "node lib/server.js &" -------------------------------------------------------------------------------- /site/404.html: -------------------------------------------------------------------------------- 1 | 2 |
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
5 | 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tcpbin", 3 | "version": "2.0.0", 4 | "description": "A simple TCP server that echoes whatever it receives", 5 | "author": "Kong
60 |
61 |
62 |
63 | Created by Mashape
66 | 67 |54.175.103.105:30000
71 | 54.175.103.105:30001
72 | 54.175.103.105:40000
75 | 54.175.103.105:40001
76 | This project has been started to help testing TCP and UDP requests in a very easy way. It is very useful for seeing what your clients are sending to TCP/UDP servers and debug problems. It can also be used for mock integration tests.
81 | 82 |Text to send to TCP
87 |
88 |
89 |
92 | {
93 | "client-ip": "::ffff:41.130.36.121",
94 | "data": [71,101,116,32,115,111,109,101,32,84,67,80,32,105,110,102,111,10],
95 | "text-data": "Get some TCP info\n",
96 | "size": 18
97 | }
98 |
99 |
100 | Text to send to UDP
103 |
104 |
105 |
108 | {
109 | "client-ip": "::ffff:41.130.36.121",
110 | "data": [71,101,116,32,115,111,109,101,32,85,68,80,32,105,110,102,111],
111 | "text-data": "Get some UDP info",
112 | "size": 17
113 | }
114 |
115 |
116 | A Mashape project.
119 | 120 |Mockbin.com - Mock, Test & Track HTTP calls
123 |Apiembed.com - Embeddable API Code snippets
124 |Mashape.com - Largest API Marketplace And Powerful Tools For Private And Public APIs
125 | 126 |