![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
bitcoin-cli-ts
Advanced tools
Auto-generated Bitcoin client library for Bitcoin Core JSON-RPC API
Install the package with:
npm i bitcoin-cli-ts
# or
yarn add bitcoin-cli-ts
Choose the version that corresponds to your Bitcoin Core version.
We use the major and minor versions from Bitcoin Core Releases and reserve the patch version for library fixes related to static code or dependencies.
import { authenticatedBitcoind } from 'bitcoin-cli-ts'
const { host, username, password, port } = getBitcoinCoreRPCConfig()
const bitcoind = authenticatedBitcoind({
protocol: 'http',
host: host,
username,
password,
timeout: 30000,
port: parseInt(port, 10),
walletName: wallet, // optional
})
import { getBalance } from 'bitcoin-cli-ts'
const balance = await getBalance({ bitcoind })
Test with Jest framework:
yarn test
Build production (distribution) files in dist folder:
yarn build
It generates CommonJS (in dist/cjs folder), ES Modules (in dist/esm folder), as well as TypeScript declaration files (in dist/types folder).
Run:
yarn link
# or
npm link
and in your test project run:
yarn link bitcoin-cli-ts
# or
npm link bitcoin-cli-ts
If you want to remove the symlink, run:
# in your test project
yarn unlink bitcoin-cli-ts
# or
npm unlink bitcoin-cli-ts
# in bitcoin-cli-ts folder
yarn unlink
# or
npm unlink
Please check more details in npm link or yarn link
This library was developed based on:
FAQs
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
The npm package bitcoin-cli-ts receives a total of 0 weekly downloads. As such, bitcoin-cli-ts popularity was classified as not popular.
We found that bitcoin-cli-ts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.