Skip to content

Instantly share code, notes, and snippets.

@mmetting
Created June 21, 2017 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmetting/e94b226ca7b71453a878438b38f97f14 to your computer and use it in GitHub Desktop.
Save mmetting/e94b226ca7b71453a878438b38f97f14 to your computer and use it in GitHub Desktop.
Add a timestamp to each entry being inserted
var timestamp = new Date().getTime()
var options = {
"act": "create",
"type": "myFirstEntity",
"fields": {
"name": world,
"timestamp": timestamp
}
};
$fh.db(options, function (err, data) {
if (err) {
console.error("Error " + err);
} else {
console.log(JSON.stringify(data));
}
});
res.json({ msg: 'Hello ' + world });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment