Gathering detailed insights and metrics for @zipeva/zipcore-lib
Gathering detailed insights and metrics for @zipeva/zipcore-lib
Gathering detailed insights and metrics for @zipeva/zipcore-lib
Gathering detailed insights and metrics for @zipeva/zipcore-lib
npm install @zipeva/zipcore-lib
Typescript
Module System
Node Version
NPM Version
JavaScript (99.85%)
HTML (0.1%)
TypeScript (0.06%)
Total Downloads
1,865
Last Day
1
Last Week
5
Last Month
59
Last Year
1,865
NOASSERTION License
3,767 Commits
1 Branches
88 Contributors
Updated on Aug 19, 2024
Minified
Minified + Gzipped
Latest Version
0.22.5
Package Id
@zipeva/zipcore-lib@0.22.5
Unpacked Size
2.61 MB
Size
781.05 kB
File Count
189
NPM Version
6.14.18
Node Version
14.21.3
Published on
Aug 23, 2024
Cumulative downloads
Total Downloads
Last Day
-50%
1
Compared to previous day
Last Week
-28.6%
5
Compared to previous week
Last Month
13.5%
59
Compared to previous month
Last Year
0%
1,865
Compared to previous year
13
32
A pure and powerful JavaScript Zip library.
Zip is a powerful new peer-to-peer platform for the next generation of financial technology. The decentralized nature of the Zip network allows for highly resilient Zip infrastructure, and the developer community needs reliable, open-source tools to implement Zip apps and services.
npm install @zipeva/zipcore-lib
1<script src="https://unpkg.com/@zipeva/zipcore-lib"></script> 2<script> 3 const { PrivateKey } = zipcore; 4 const privateKey = new PrivateKey(); 5 const address = privateKey.toAddress().toString(); 6 ... 7</script>
To build a zipcore-lib full bundle for the browser:
1npm run build
This will generate a file named zipcore-lib.min.js
in the dist/
folder.
<script src='./dist/zipcore-lib.min.js' type="text/javascript"></script>
<script>
const PrivateKey = zipcore.PrivateKey;
const privateKey = new PrivateKey();
const address = privateKey.toAddress().toString();
</script>
Some functionality is implemented as a module that can be installed separately:
1git clone https://github.com/zipeva/zipcore-lib 2cd zipcore-lib 3npm install
Run all the tests:
1npm test
You can also run just the Node.js tests with npm run test:node
, just the browser tests with npm run test:browser
or run a test coverage report with npm run coverage
.
Some examples can be found here, below is a list of direct links for some of them.
Please send pull requests for bug fixes, code optimization, and ideas for improvement. For more information on how to contribute, please refer to our CONTRIBUTING file.
Code released under the MIT license.
Copyright 2013-2017 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.
Copyright 2016-2017 The Zip Foundation, Inc.
Copyright 2017-2020 Zip Core Group, Inc.
No vulnerabilities found.
No security vulnerabilities found.