get

node v18.11.0
version: 3.0.1
endpointsharetweet
const express = require('express') const bodyParser = require('body-parser') const app = express() const port = 443 app.get('/test', (req, res) => { console.log(" test "); //var request = require('request'); //request('http://www.google.com', function (error, response, body) { // if (!error && response.statusCode === 200) { // console.log(body) // Print the google web page. // } //}) })
Loading…

no comments

    sign in to comment