Node Js Now
const http = require('http'); const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello! This is a text response from Node.js.\n'); }); server.listen(3000, () => { console.log('Server running at http://localhost:3000/'); }); Use code with caution. Copied to clipboard Source: Node.js Official Documentation 2. Creating and Writing to a Text File
If you want to send a plain text response to a web browser, you can use the built-in http module. This is the foundation of how Node.js servers communicate. javascript Node js
To send a physical text message to a phone number, developers often use the Twilio API. javascript const http = require('http'); const server = http
const fs = require('fs'); const content = 'This is the text I want to save to a file.'; fs.writeFile('example.txt', content, (err) => { if (err) throw err; console.log('The file has been saved!'); }); Use code with caution. Copied to clipboard Source: Stack Overflow 3. Formatting Terminal Output Creating and Writing to a Text File If