| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Try out BLAST at https://wintechis.github.io/blast/
This is a monorepo with five packages:
For more detailed descriptions navigate to one of the packages (@blast/core or @blast/web)
In order to use the BLAST web demo open a Terminal and enter the following commands:
Note
You might have to set yarn version using yarn set version berry before installing
Yarn 2+ supports installing packages from a private git monorepo. To set packages of BLAST as dependecies in your project follow the steps below:
"dependencies": {
"@blast/node": "git+https://github.com/wintechis/blast.git#workspace=@blast/node",
"@blast/tds": "git+https://github.com/wintechis/blast.git#workspace=@blast/tds"
},
"resolutions": {
"@blast/core": "git+https://github.com/wintechis/blast.git#workspace=@blast/core"
},
"type": "module"Now, you can import the packages in your project code, i.e.:
import {createThing} from '@blast/node';
import {BleRgbController} from '@blast/tds';Don't forget to execute sudo setcap cap_net_admin=ep $(eval readlink -f `which node`) to allow Node.js to access Bluetooth devices.
| Back | FazBrowse Home | New Git URL |