To return a text response from a HTTP server in JavaScript, you can use the built-in http
module in Node.js. Here's an example code snippet:
index.tsx243 chars11 lines
In this example, we create a new HTTP server using the createServer
method of the http
module. We set the content type of the response to text/plain
using the setHeader
method, and write the text response using the end
method.
Finally, we start the server using the listen
method, which listens for incoming HTTP requests on port 3000
.
gistlibby LogSnag