a nostr web interface in vanilla JS https://nostr.ch/
 
 
 
 
 
Go to file
OFF0 be13ecf73f
ci/woodpecker/push/woodpecker Pipeline was successful Details
setting: add import and generate private key
Added a new tab for settings to create a private key. The key is
only set in local storage but not used yet.
2022-11-06 23:10:42 +01:00
src setting: add import and generate private key 2022-11-06 23:10:42 +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.