文件名称:cetriolino::cucumber:简单的键值存储
文件大小:62KB
文件格式:ZIP
更新时间:2024-03-17 03:13:11
nodejs library typescript key-value TypeScript
塞特里奥利诺 使用TypeScript编写的简单键值存储,没有运行时相关性。 由严重。 用法 import Cetriolino from 'cetriolino' const db = new Cetriolino ( 'db.json' ) db . set ( 'one' , 1 ) db . get ( 'one' ) // 1 db . lcreate ( 'hey' ) // or: db.set('hey', []) db . lpush ( 'hey' , [ 'oh' , "let's" , 'go' ] ) // 3 db . get ( 'hey' ) // [ 'oh', 'let\'s', 'go' ] db . dump ( ) 安装 $ npm install cetriolino 或者 $ yarn add cetriolino 去做 添加对嵌套词典
【文件预览】:
cetriolino-master
----.travis.yml(252B)
----rollup.config.js(486B)
----package.json(1014B)
----__tests__()
--------cetriolino.spec.ts(4KB)
----.github()
--------main.workflow(281B)
----.prettierrc(106B)
----jest.config.js(68B)
----LICENSE(1KB)
----package-lock.json(204KB)
----src()
--------index.ts(6KB)
----.npmignore(112B)
----tsconfig.json(274B)
----.gitignore(54B)
----CHANGELOG.md(4KB)
----README.md(979B)