Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

user-profile-mongo

nagucc18MIT1.1.1

使用MongoDB保存用户信息

readme

user-profile-mongo

使用MongoDB保存用户数据

安装

npm install user-profile-mongo

Profile 结构


{
    crendential: {...},     // 记录用户的唯一标识信息,例如userid等
    data:{...}                // 保存用户数据
}

示例

var Profile = require('../models/profile')('your db conn', 'collection_name'); // colllection_name默认为'profiles'

// 插入新用户:
Profile.updateUser(null, profile, callback);

// 更新已有用户数据:
Profile.updateUser(id, profile, callback);

// 获取用户数据:
Profile.getUser(userCrendential, callback);