Intro to Scripting

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper

Create a simple Node.js server (Save as w4_firstname_lastname.js) . Create a restful application similar to the one in lesson 4. Document the routing table, and the application you created.

Extra: Modify any JavaScript code (or the JScript assignment)  to run from Node.js command line

Save Time On Research and Writing
Hire a Pro to Write You a 100% Plagiarism-Free Paper.
Get My Paper

Submit your week 4 work in w4_firstname_lastname.txt (Please save the file as a text file and upload the text file here for final review.)

A web service is a collection protocols and standards used for exchanging data between applications or systems. Services are written in various programming languages, and running on various platforms. The following table has URI examples on how to call the services.

Routing Table 

Sr. No.

HTTP Method

URI

Operation

CRUD

1

GET

/UserService/users

Get list of users

Read

2

GET

/UserService/users/1

Get User with Id 1

Read

3

PUT

/UserService/users/2

Insert User with Id 2

Update

4

POST

/UserService/users/2

Update User with Id 2

Create

5

DELETE

/UserService/users/1

Delete User with Id 1

Delete

With ExpressJS, you can easily create a ReStful web services.

Here is an example how to create a routing table similar to the one above

/*

// This application to demo the use of restfull services

// This is the core for any MV* pattern

// let me know if you have any question

// use express server, it must be in the node_modules

save this code as wk4_myserver.js in c:\ENTD261

to run this code, make sure you are on c:\entd261 if not change directory to c:\entd261 

>cd c:\entd261

C:\ENTD261>node wk4_myserver.js

once the server is running, you will get

Express server listening on port 55555

from any browser

*/

// setup

var express=require(“express”);

var http=require(“http”);

var app=express();

// run the server

http.createServer(app).listen(55555);

console.log(‘Express server listening on port 55555’);

// <<< here is the Model, the data storage

var products = [

         { id: 0, name: ‘watch’, description: ‘Tell time with this amazing watch’, price: 30.00 },

         { id: 1, name: ‘sandals’, description: ‘Walk in comfort with these sandals’, price: 10.00 },

         { id: 2, name: ‘sunglasses’, description: ‘Protect your eyes in style’, price: 25.00 }

];

//                // general route

// here is the view 

app.get(” function(req,res){

  var msg=””

  msg += “<center><h1> This is the default page </h1></center>”

  msg += ” use the following <br />”

  msg += ” hello <br />”

  msg += ” goodbye <br />”

  msg += ” products <br />”

  msg += ” products/2 <br />”

  res.send(msg);

});

// <<< routes = controller

// hello                    // welcome  route

app.get(“/hello”, function(req,res){

  res.send(“Hello ENTD261 class”);

 });

// goodbye                       // good bye route

app.get(“/goodbye”, function(req,res){

  res.send(“Thank you ENTD261 class”);

 });

// products                       // load and display all products

app.get(‘/products’, function(req, res) {

         res.send(JSON.stringify(products));

 });

// products/2                    // load and display product id 2

app.get(‘/products/:id’, function(req, res) {

         if (req.params.id > (products.length – 1) || req.params.id < 0) {

                 res.statusCode = 404;

                 res.end(‘Not Found’);

         }

         res.send(JSON.stringify(products[req.params.id]));

 });

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with Homework Mules
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
Psychology
Thank you. I will forward critique once I receive it.
Customer 452467, July 25th, 2020
Education
Thank you so much, Reaserch writer. you are so helpfull. I appreciate all the hard works. See you.
Customer 452701, February 12th, 2023
Finance
Thank you very much!! I should definitely pass my class now. I appreciate you!!
Customer 452591, June 18th, 2022
Business Studies
Great paper thanks!
Customer 452543, January 23rd, 2023
Political science
Thank you!
Customer 452701, February 12th, 2023
Psychology
I requested a revision and it was returned in less than 24 hours. Great job!
Customer 452467, November 15th, 2020
Accounting
Thank you for your help. I made a few minor adjustments to the paper but overall it was good.
Customer 452591, November 11th, 2021
Technology
Thank you for your work
Customer 452551, October 22nd, 2021
Political science
I like the way it is organized, summarizes the main point, and compare the two articles. Thank you!
Customer 452701, February 12th, 2023
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat
Show more
<
Live Chat 1 7633094299EmailWhatsApp

Order your essay today and save 15% with the discount code WELCOME