Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

expressjs

  1. Cooldude100

    Node.JS Express js not working

    I made a server in express.js, Here is the code: var express = require('express'); var app = express(); app.get('/', (req, res) => { console.log('Ready, and in action!'); res.send(); }) app.listen(443); It won't send anything to the console. I am using the command prompt. Is there...
Back
Top Bottom