Skip to content

Added MyStep.js @ 1017 2001 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions MyStep.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

// Week 06 Express: Basic Routing
// My Step working from step 02

// Import the express library
const express = require('express')

// Create an instance of express
const app = express()

// Declare a port to run on
const port = 3000

// Declare a route

var someRoute = ['/', '/xyz', '/chuchu'];
//app.get(someRoute, (req, res) => res.send('Hello World!'))
app.get('/:Page', (req, res) => res.send("This is page " + req.params.Page))

// Declaring another route
app.get('/about', (req, res) => res.send('About'))

// Start Express Web Server i.e. start listing on the port you defined
app.listen(port, () => console.log(`Example app listening on port ${port}!`))