Git Product home page Git Product logo

Comments (3)

iangreenleaf avatar iangreenleaf commented on July 20, 2024

I'm trying to reproduce with the code from your SO post, and can't get it to happen. Expanded it to this:

express = require("express");
var app = express.createServer();

var a = 0;
app.post('/rpc', function(req, res){
    debugger; // hits only once
    var console = require('console');
    a++; // runs once
    console.log(a); // runs twice!!!
    debugger; // hits only once
});

app.listen(4579);

And ran it with supervisor -- --debug supe_dupe.js and it executes once for every request, as expected.

I suspect this problem is coming from somewhere else in your project.

from node-supervisor.

totty90 avatar totty90 commented on July 20, 2024

what might I do to check what is the problem?

from node-supervisor.

iangreenleaf avatar iangreenleaf commented on July 20, 2024

The best way to approach this is to try to come up with a minimal set of
code that still exhibits the behavior. Start removing extra features and
external modules from your project, testing as you go. If you remove a
dependency and the problem disappears, you'll know what is to blame for the
problem. Or if you remove almost everything and you're still seeing
problems, you'll have a minimal test case that you can paste back here :)

from node-supervisor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.