MongoDb&&Express
关系型数据库和非关系型数据库
安装
- 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 #启动服务器
- ./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
网友评论