Coder Social home page Coder Social logo

Comments (3)

reverb-bot avatar reverb-bot commented on May 22, 2024

Hi! I'm a noob too :-) but I was just reading something yesterday that I
think might help with the recent express.js changes:
http://webapplog.com/migrating-express-js-3-x-to-4-x-middleware-route-and-other-changes

Good luck!

Erin

On 5/17/14, 2:31 PM, Eric McNiece wrote:

I'm having trouble following the
https://github.com/wordnik/swagger-node-express tutorial. I'm getting
the "Error: Most middleware (like json) is no longer bundled with
Express and must be installed separately" error, running node v0.10.22.
As per the instructions at
https://github.com/senchalabs/connect#middleware I have tried installing
https://github.com/expressjs/body-parser but now I am not sure how to
execute the |app.use(express.json() );| line. How does this work?

Thanks for your time, sorry for the noob post.


Reply to this email directly or view it on GitHub
#113.

from swagger-node.

emcniece avatar emcniece commented on May 22, 2024

Very interesting, thanks for the link. There's a quick block about code conversion between 3.x and 4.x, so I've translated that into the init from the tutorial:

var express         = require("express")
  , logfmt          = require("logfmt")
  , EventSource     = require('eventsource')
  , http            = require('http')
  , fs              = require('fs')
  , url             = require('url')
  , cors            = require('cors')
  , bodyParser      = require('body-parser')
  , json            = require('json')
  , urlencode       = require('urlencode')
  , swagger         = require('swagger-node-express')
  , swmodels        = require('./swagger-models.js')
  ;

var app = express();
app.use(bodyParser() );
//app.use(express.json() );
//app.use(express.urlencoded() );
app.use( json() );
app.use( urlencode() );

Still throwing errors, investigation continues.

from swagger-node.

emcniece avatar emcniece commented on May 22, 2024

Turns out that you don't need to app.use() them! The errors I was working through were due to foreman and some module stuff. New (working) config looks like so:

var express         = require("express")
  , logfmt          = require("logfmt")
  , EventSource     = require('eventsource')
  , http            = require('http')
  , fs              = require('fs')
  , url             = require('url')
  , cors            = require('cors')
  , bodyParser      = require('body-parser')
  , json            = require('json')
  , urlencode       = require('urlencode')
  , swagger         = require('swagger-node-express')
  , models          = require('./swagger-models.js')
  ;

var app = express();
app.use(bodyParser() );
//app.use(express.json() );
//app.use(express.urlencoded() );
//app.use( json() );
//app.use( urlencode() );

from swagger-node.

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.