MongoDb&&Express
關(guān)系型數(shù)據(jù)庫和非關(guān)系型數(shù)據(jù)庫
安裝
- wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.8.tgz
- tar zxvf mongodb-linux-x86_64-amazon-3.2.8.tgz
- cd ./
- ./mongod --dbpath=../wei #啟動服務(wù)器
- ./mongo #終端連接
基本命令
show dbs
db.collection.find()
db.collection.update()
db.collection.remove()
db.collection.insertOne()
db.users.find()
db.collection.find( <query filter>, <projection> )
db.sersion()
db.getCollectionNames()
Express
安裝
npm install express-generator -g
express myapp
npm install
npm start