我有一個NodeJs + Express + Mongo應用程序。應用程序的模型「項目」初學者的Everyauth示例
var Item = new Schema({
name: { type: String, required: true }
, description: String
, status: String
, price: { type: Number, "default": 0 }
});
我要的是使用everyauth實施身份驗證和授權 CRUD操作(密碼 - 不是通過Facebook,Twitter ......)。可任何一個建議一個簡單,容易可理解的教程和一個可執行示例那將適合初學者?