The Keeper App starter template.
Here's a live demo.
Netlify : https://daydash-keeper-app.netlify.app
No configuration or complicated folder structures, just the files you need to build the app:
keeper-app
├── public
│ ├── vite.svg
└── src
├── assests
│ ├── react.svg
├── App.jsx
├── CreateArea.jsx
├── Footer.jsx
├── Header.jsx
├── Note.jsx
├── main.jsx
├── styles.css
├── .gitignore
├── index.html
├── package-lock.json
├── package.json
├── README.md
├── vite.config.js
To get a local copy of the code, clone it using git:
git clone https://github.com/daydash/keeper-app.git
cd keeper-app
Make it your own:
rm -rf .git && git init && npm init
git add .
git commit -m "Initial commit"
Install dependencies:
npm i
Now, you can start a local web server by running:
npm start
And then open http://localhost:3000 to view it in the browser.
In this project, you can run the following scripts:
Script | Description |
---|---|
npm run dev | Runs the app in the development mode. |
npm run build | Builds the app for production to the dist folder. |
npm run serve | Serves the production build from the dist folder. |
Keeper App is built and maintained by Yash Bhatnagar @daydash.
This project is licensed under the terms of the MIT license.