a nostr web interface sandbox
 
 
 
Go to file
OFF0 5d701c8767
utils: append string child directly
Strings can be appended directly without spreading.
2022-11-22 21:55:53 +01:00
src utils: append string child directly 2022-11-22 21:55:53 +01:00
tools initial 2022-11-06 02:35:27 +01:00
.gitignore initial 2022-11-06 02:35:27 +01:00
.woodpecker.yml ci: set up a continuous build of the app 2022-11-06 20:00:00 +01:00
LICENSE initial 2022-11-06 02:35:27 +01:00
README.md initial 2022-11-06 02:35:27 +01:00
esbuildconf.js initial 2022-11-06 02:35:27 +01:00
package-lock.json initial 2022-11-06 02:35:27 +01:00
package.json initial 2022-11-06 02:35:27 +01:00

README.md

nostr web sandbox

a playground for a web interface to nostr. some useful resources:

dev

nodejs v18.x and npm v8.x are recommended.

after npm install, start by running a dev server with:

npm run serve

and point a browser to http://127.0.0.1:8001/

the serve command injects a live reload snippet. to build a "production" copy, execute

npm run build

the build is done using esbuild, with a config in esbuildconf.js. the result is placed in dist directory.