Giter VIP home page Giter VIP logo

vuexpresso's Introduction

vuexpresso's People

Contributors

borisknot avatar dependabot-preview[bot] avatar dependabot[bot] avatar ethaan avatar sobolevn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vuexpresso's Issues

Mongodb connection

In config/index.js

 database: {
    mongoURL: 'mongodb://localhost:27017/example',
  },

needs to be changed to:

 database: {
    mongoURL: 'mongodb://localhost:27017/',
    name: 'databaseName',
  },

And subsequently, build/dev-server.js needs the following change:

// Create a MonboDB connection pool and start the Node.js app
MongoClient.connect(config.database.mongoURL, { promiseLibrary: Promise })
  .catch(err => console.error(err.stack))
  .then((db) => {
    app.locals.db = db; // See http://expressjs.com/en/4x/api.html#app.locals
    app.listen(port);
     
     ...

  });

to:

MongoClient.connect(config.database.mongoURL, { promiseLibrary: Promise })
  .catch(err => console.error(err.stack))
  .then((client) => {
    app.locals.db = client.db(config.database.name);
    app.listen(port);

    ...

  });

To reflect the changes made to in Mongodb v3+
Specifically:
version 3+ has connectCallback(error, client)
version 2 has connectCallback(error, db)

so there's an extra step in getting the collections.

I'd make a pull request, but I actually do not know how to do this yet.

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.