# node blog **Repository Path**: liutingqzh.com/node-blog ## Basic Information - **Project Name**: node blog - **Description**: No description available - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-12-05 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # node blog123 #数据库连接方式 mac系统 1./Users/liutingqzh/mongodb/bin目录下打开命令行"./mongod --dbpath /Users/liutingqzh/Desktop/node/node-blog/db'将数据库存放到指定文件夹 win系统 命令mongod -dbpath "C:\Users\Administrator\Desktop\nodejs\node_blog\db" 2.mongoose链接数据库方法: mongoose.connect("mongodb://localhost:27017/blog",(err) => { if(err){ console.log("数据库连接失败") }else{ console.log("数据路连接成功") app.listen(8081); } });