Code Monkey home page Code Monkey logo

Comments (3)

kennethgreen avatar kennethgreen commented on July 21, 2024

Ditto.

var Datastore = require('nedb');
var db = {};
db.users = new Datastore('/temp/users.db');
db.users.loadDatabase();

Run this (Win7, node 0.10.12, nedb 0.7.10) and I get the same error as somewhatdog:

C:\node\sites\cto_nat_tools\node_modules\nedb\lib\executor.js:27
      task.arguments.push(callback);
                     ^
TypeError: Object #<Object> has no method 'push'
    at C:\node\sites\cto_nat_tools\node_modules\nedb\lib\executor.js:27:22
    at Object.q.process [as _onImmediate] (C:\node\sites\cto_nat_tools\node_modules\nedb\node_modules\async\lib\async.js
:728:21)
    at processImmediate [as _immediateCallback] (timers.js:330:15)

from nedb.

kennethgreen avatar kennethgreen commented on July 21, 2024

It seems the callback is not optional, not a problem but the doco should be updated.

var util      = require('util');
var Datastore = require('nedb');
var db = {};
db.users = new Datastore('/temp/users.db');
db.users.loadDatabase(function (err) {
    if (null === err)
    {
        console.log('All OK, no error detected');
    }
    else
    {
        console.log('Ouch!\n' + err);
    }
});

Results in:

All OK, no error detected

from nedb.

louischatriot avatar louischatriot commented on July 21, 2024

Hello,

This is now fixed and callbacks advertised as optional are indeed optional.

from nedb.

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.