Basically, in order to insert records to nedb, the data is stored in the form of json with the key being the column names and the value for those names will be the values for that record.
var rec = { name: 'bigbounty',age:16};
db.insert(rec, function (err, newrec) { // Callback is optional
...