1 Star 1 Fork 0

孤傲/as-db

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
孤傲 提交于 2022-08-13 14:09 . init
// require the as-db
// 引入as-db
const db = require('./as-db')
// get a database object
// 得到数据库对象
const user = db.create('user')
// Next, you just need to operate on the user object
// 接下来你只需要对user对象进行操作即可
// set a property
// 设置属性
user.name = 'as-yyds'
user.age = 18
user.hobbies = ['eating', 'sleaping', 'playing Peas']
user.hobbies.push('fish')
user.gender = true
user.address = {
country: 'China',
city: 'Beijing'
}
user.address.city = 'fujian'
console.log(user)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/was666/as-db.git
git@gitee.com:was666/as-db.git
was666
as-db
as-db
master

搜索帮助