Welcome!

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

SignUp Now!

express

  1. B

    Node.JS My file in nodejs with express don´t work

    Hello! When I execute the code nodejs with npm start this message apear. (node:3900) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension. (Use node --trace-warnings ... to show where the warning was created) C:\Users\ar\ntask-api\index.js:1 import...
  2. 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...
  3. A

    JavaScript Attempting to deliver an hls stream using express, works in browser but wont play in HLS player

    I am trying to make an express server that takes rtsp(am using ffmpeg) converted to hls/m3u8 and streams it upon request(so it can later be viewed on a client).I am still learning and am not too familiar, so any and all help is appreciated - if you have any resources that could help me in this...
  4. Malcolm

    Node.JS Sendgrid is not returning results with a provided timestamp.

    Hey folks, I've been building a server that fetches all bounces from Sendgrid. Currently, I'm trying to query for certain results, e.g. start_time & end_time values Sendgrid requires. But I noticed that it doesn't always return the requested data. Sometimes it's blank with just [ ] as a result...
  5. iimadouu

    JavaScript how to filter the json response coming from axios request?

    hello, im trying to filter and organize a Json response from axios.get, im requesting a soccer standings table i ve succeded in returning the data but is bit messy, im using node express, axios, and cheerio as you can see on my code below this is my code: const express = require('express')...
  6. GREFF1978

    JavaScript CORS/Express: Getting data from server from domain html

    Howdy! This has been many days of trying to research however, either I am misunderstanding something or the solution online is not directred toward my issue. I am running a node server on a sub-domain as such: xxx.yyy.com I have express, socket.io and cors all installed. My app.js file...
Back
Top Bottom