https://github.com/pradel/craco-blockstack
A craco plugin to use Blockstack with create-react-app
https://github.com/pradel/craco-blockstack
blockstack craco create-react-app
Last synced: 9 months ago
JSON representation
A craco plugin to use Blockstack with create-react-app
- Host: GitHub
- URL: https://github.com/pradel/craco-blockstack
- Owner: pradel
- License: mit
- Created: 2019-03-17T13:53:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-20T12:43:06.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T21:41:21.749Z (9 months ago)
- Topics: blockstack, craco, create-react-app
- Language: JavaScript
- Size: 3.91 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# craco-blockstack
A [craco](https://github.com/sharegate/craco) plugin to use Blockstack with create-react-app.
## Install
Make sure you have [craco](https://github.com/sharegate/craco) installed before continuing.
`npm install --save craco-blockstack`
`yarn add --dev craco-blockstack`
## Usage
Simply enable the plugin in your `craco.config.js` file.
```javascript
// craco.config.js
const CracoBlockstackPlugin = require("craco-blockstack");
module.exports = {
plugins: [{ plugin: CracoBlockstackPlugin }]
};
```