Wednesday, May 19, 2021

Node js slip no 1

 SYBBA(CA) Sem IV  Node Js slips solutions

 Slip No 1

Q1. Create a Node.js file that will convert the output "Hello World!" into upper-case letters.


var http = require('http');

var uc = require('upper-case');

http.createServer(function (req, res) {

  res.writeHead(200, {'Content-Type': 'text/html'});

  res.write(uc.upperCase("Hello World!"));

  res.end();

}).listen(8080);


Save the code above in a file called "d_uppercase.js", and initiate the file:

First Install module 'upper-case' using npm

C:\Users\Your Name>npm install upper-case

Initiate d_uppercase:

C:\Users\Your Name>node d_uppercase.js

If you have followed the same steps on your computer, you will see the same result as the example: http://localhost:8080

No comments:

Post a Comment