Yes, JavaScript can be used for server-side scripting, primarily through the use of Node.js. Node.js is a runtime environment that allows you to run JavaScript on the server, enabling you to build scalable network applications and web servers.
Key Features of Server-Side JavaScript with Node.js:
- Non-blocking I/O: Node.js uses an event-driven, non-blocking I/O model, making it efficient for handling multiple requests simultaneously.
- NPM (Node Package Manager): It provides access to a vast ecosystem of libraries and frameworks, making development faster and easier.
- Full-Stack Development: You can use JavaScript for both client-side and server-side development, allowing for a unified language across your application.
Example:
Here's a simple example of a Node.js server:
const http = require('http');
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello, World!\n');
});
server.listen(3000, () => {
console.log('Server running at http://localhost:3000/');
});
This code creates a basic HTTP server that responds with "Hello, World!" when accessed.
If you have more questions or need further clarification, feel free to ask!
