Code Monkey home page Code Monkey logo

Comments (5)

joakimbeng avatar joakimbeng commented on September 26, 2024

That's by design, see: section Starting the server in the Readme.

To keep the server running in development mode you can run a watch task after starting the server, like so:

grunt express:dev watch

from grunt-express-server.

dmythro avatar dmythro commented on September 26, 2024

Oh snap, this way it works as expected. Thanks for reply and excuse me for inattention.

Regarding livereload: what's correct setup for changed Node app sources? Need to refresh the page. With livereload: true in watch task options server is restarted, but then I get "could not connect" in browser, need to refresh it manually.

from grunt-express-server.

joakimbeng avatar joakimbeng commented on September 26, 2024

Hmm, for me it works.

This is how my watch and express task configs looks like:

watch: {
  backend: {
    options: {
      spawn: false
    },
    files: ['<%= dirs.src %>/index.js', '<%= dirs.api %>/**/*.js', '<%= dirs.config %>/*.{js,json}'],
    tasks: ['express:dev']
  },
  livereload: {
    options: {
      livereload: true
    },
    files: [
      '<%= dirs.temp %>/index.html',
      '<%= dirs.app %>/**/*.js',
      '<%= dirs.temp %>/*.js',
      '<%= dirs.temp %>/styleguide.html',
      '<%= dirs.temp %>/css/**/*.css',
      '!<%= dirs.app %>/**/*.spec.js'
    ]
  }
},

express: {
  options: {
    port: 1337,
    script: '<%= dirs.src %>/index.js'
  },
  dev: {
    options: {
      node_env: 'development'
    }
  }
},

Then I have this in my express server configuration step:

app.configure('development', function () {
    app.use(require('connect-livereload')());
    app.use(express.static(path.join(__dirname, 'app')));
    app.use(express.static(path.join(__dirname, '..', '.tmp')));
    app.use(express.static(path.join(__dirname, '..', 'bower_components')));
});

So you'll need to have connect-livereload installed as well, for the livereload to work. Maybe that's what's missing for you?

from grunt-express-server.

dmythro avatar dmythro commented on September 26, 2024

Yes, you're right, at that point I really missed app.use(require('connect-livereload')());.
No issue should be created here, so thank you for patience :)

from grunt-express-server.

joakimbeng avatar joakimbeng commented on September 26, 2024

@Z-AX no worries, glad I could help!

from grunt-express-server.

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.