文件名称:chainDB:基于区块链技术的noSQL数据库
文件大小:13KB
文件格式:ZIP
更新时间:2024-02-24 05:01:49
nodejs node block database nosql
基于区块链技术的noSQL数据库。 目的是使用简单的仅附加系统(可能是将来编辑块的方法?)来存储数据。 安装 npm install @christopy/chaindb --save 建立一条链 // Get chainDB. const Chain = require ( "@christopy/chaindb" ) ; // Create the Chain. Chain . New ( "My awesome blockchain DB" ) ; 添加块 要添加块,只需指定您的姓名和内容即可。 // Add a Block with a title of "phrase" and your content as "lorem ipsum". Chain . Add ( "phrase" , "lorem ipsum" ) ; // Add a Block with a title of "user" and your content as an Object. Chain . Add ( "user" , { name : "john" , last_name :
【文件预览】:
chainDB-master
----Distribution()
--------Chain.js(3KB)
--------Index.js(911B)
--------Block.js(2KB)
--------.gitkeep(0B)
----package.json(957B)
----LICENSE(1KB)
----package-lock.json(2KB)
----chainDB.svg(9KB)
----tsconfig.json(157B)
----.gitignore(30B)
----Source()
--------Index.ts(716B)
--------Chain.ts(3KB)
--------Block.ts(1KB)
----Tests()
--------index.js(1KB)
----README.md(2KB)