My website, from the distant past, that i have no memory of
Links to various templates
- template-js -- A template for JS projects
- template-ts -- A template for Node typescript dependency modules
- template-ts-browser -- Template for typescript projects in a browser environment
- template-web-component -- Template for web components
- template-ts-preact-htm -- Template for peact, htm, and typescript
- template-ts-preact-htm-app -- Template for applications using htm & preact
- template-netlify-preact-htm-app -- Template for netlify, htm, preact
- template-tonic-spa -- Tonic framework + client-side routing
- template-web-ssc -- Use the same source code to build web apps and native apps
plus, a list
npm run build
npm start
npm run deploy
make a file src/_chat.html
copy the file to public/chat/index.html
_chat.html
should have a link like /chat/chat.js
src="/chat/chat.js"
need to copy the html file, and browserify the script
or add to the build script
the problem is that there's no watch
script for developing
a watch script
mkdir -p public/chat && budo src/chat.js:chat.js --dir=public/chat --live --pushstate --open -- -p esmify -dv
build script
browserify src/chat.js > public/chat/chat.js -dv