Handy Snippets - Vite + Typescript app for storing and sharing end-to-end encrypted notes online. This app uses GraphQL API to interact with Handy Snippets Backend
One-liner:
npx degit dariasmyr/handy-snippets-frontend my-app && cd my-app && git init && git add . && git commit -m "Initial commit" && npm install && cp .env.example .env && npm run gen && npm run start:dev
Step by step:
npx degit dariasmyr/handy-snippets-frontend my-app
cd my-app
git init && git add . && git commit -m "Initial commit"
npm install
cp .env.example .env
- Edit
.env
npm run gen
npm run start:dev
Production build:
npm run build
npm start:prod
Run npm run gen
after every GraphQL API Schema changed or after ./graphql/*.graphql
files are modified