I think I figured it out actually
Thanks for your help 🙏
I think I figured it out actually
Thanks for your help 🙏
Awesome! What turned out to be the issue?
I’m not familiar with typescript so I just kept struggling and stumbling through it
Here’s what I eventually did and maybe you can tell me if there was an easier way
-Created a typescript project folder
-npm installed your library
-Created a file to export each function I needed (see image below)
-Packaged it into a webpack
-npm run build to get bundle.js file
-Host bundle.js on cloudflare
Now my webapp has your functions and all I need in my HTML is:
“”

Great! The package actually already has an inbuilt command to create a standalone bundle. Simply clone the repo and do
- npm i
- npm run compile:standalone
lol nice, that’s way easier
At least it was a good learning experience 😅
Is the standalone bundle already hosted on a CDN anywhere?
I could at least do that if that benefits anyone
I got this error in the image below because I'm on an old Windows machine
I had to:
- npm i
- npm install --save-dev cross-env
- update "compile:standalone": "cross-env BUILD_FORMAT=iife vite build" on package.json
- npm run compile:standalone
But now I think I got the full cashu-ts library working! Thanks for your help!
