tapnow is a browser application for visual AI workflow prototyping.
The app runs as a Vite/React project.
npm install
./scripts/serve.shThen open:
http://127.0.0.1:8765/
The development server runs on Vite and loads React, Tailwind, Lucide, Marked, and DOMPurify from local npm dependencies.
For a production build:
npm run buildindex.html Vite HTML entry
src/main.jsx React entry point
src/legacy/TapnowApp.jsx Main tapnow app shell and workflow logic
src/legacy/support.jsx Shared app constants, helpers, and UI pieces
src/shared/icons.jsx Tree-shaken Lucide icon adapter
src/shared/markdown.js Sanitized Markdown rendering helper
scripts/serve.sh Local dev server helper
tools/local-connector/ Optional local file/cache helper service
This project is distributed under GPLv3. It is a GPLv3 derivative of:
https://github.com/zhengxinlan1995-code/Tapnow-Studio--
See LICENSE.
- Compressed binary/helper bundles are intentionally not kept in this repo.
- API keys and session IDs are stored by the app in browser localStorage.
- Jimeng and local-file-save features require separate local helper services. Review those helpers before running them.