Skip to content

Instantly share code, notes, and snippets.

@soardex
Created December 25, 2016 20:08
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 soardex/0daadbce5ab11eb3e4e0c50ce1a58f3e to your computer and use it in GitHub Desktop.
Save soardex/0daadbce5ab11eb3e4e0c50ce1a58f3e to your computer and use it in GitHub Desktop.
Import JSON File In MongoDB
var file = cat('./MOCK_DATA.json');
use yoopur;
db.auth('username', 'password');
var o = JSON.parse(file);
db.users.insert(o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment