Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
ccash-client-js
Advanced tools
TypeScript/JavaScript client library for CCash HTTP API.
yarn add ccash-client-js
# or
npm install --save ccash-client-js
import { CCashClient } from 'ccash-client-js';
process.env.CCASH_API_BASE_URL = 'https://your.ccash.api';
const client = new CCashClient();
console.log(await client.balance('blinkblinko'));
Set environment variable DEBUG=CCashClient
to log debug messages.
Web (react) example can be found in examples/web
Server (node) example can be found in examples/node
Run yarn start
to run the examples from their corresponding directory.
Build for production: yarn build
Build and watch for development: yarn dev
Format source code w/ prettier: yarn format
Test source units w/ jest: yarn test
If you're developing locally and using this client as a dependency, you can link the package so the local client version is used.
cd ccash-client-js
yarn link
yarn dev
# and then
cd your-project
yarn add ccash-client-js # if not already in packge.json
yarn link ccash-client-js
FAQs
JS HTTP client for CCash
The npm package ccash-client-js receives a total of 0 weekly downloads. As such, ccash-client-js popularity was classified as not popular.
We found that ccash-client-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.