8000 GitHub - vincenttian/github_hack
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

vincenttian/github_hack

Folders and files

Name
Name
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Node.js Hackathon Starter

###Hackathon Documentation

Node.js Authentication: http://scotch.io/tutorials/javascript/easy-node-authentication-setup-and-local

Github Passport API: https://github.com/jaredhanson/passport-github/

Github API: https://github.com/mikedeboer/node-github/ Good docs can be found at: http://mikedeboer.github.io/node-github/

Mongoose Docs: http://mongoosejs.com/docs/

Async Library:

###MongoDB

#####Start up the server

$ sudo mongod #####Local Mongo shell

$ mongo

Use a database

> use <database>


Show all db's

> show dbs


Show all collections

> show collections


Query all users

> db.users.find()


Find Specific User

> db.users.findOne({linkedin_email:'jordeenchang@gmail.com'})


Drop Specific collection

> db.users.drop()


Find All people in Bay Area

> db.allpeoples.find({location: "San Francisco Bay Area"})

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0