https://github.com/wesleyara/need-water-desktop
https://github.com/wesleyara/need-water-desktop
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wesleyara/need-water-desktop
- Owner: wesleyara
- License: mit
- Created: 2022-12-27T10:59:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-10T21:30:14.000Z (over 2 years ago)
- Last Synced: 2025-01-26T18:17:28.178Z (5 months ago)
- Language: TypeScript
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Need Water DesktopNeed Water Desktop is an app for remeber you for drink water.
[](https://github.com/ellerbrock/open-source-badges/)
[](https://opensource.org/licenses/mit-license.php)
[](#contributors-)
🛠️ Tools
:pencil: Contributing •
:adult: Thanks •
:page_facing_up: License
# 🛠️ Tools
For build this project we use:
- [Vite](https://vitejs.dev/)
- [React](https://reactjs.org/)
- [TypeScript](https://www.typescriptlang.org/)
- [Electron](https://www.electronjs.org/)
- [TailwindCSS](https://tailwindcss.com/)
- [Redux](https://redux.js.org/)
- [Redux Toolkit](https://redux-toolkit.js.org/)
- [Countdown](https://www.npmjs.com/package/react-countdown)
- [React Icons](https://react-icons.github.io/react-icons/)
- [React Toastify](https://fkhadra.github.io/react-toastify/introduction)
- [utils-react](https://www.npmjs.com/package/utils-react)# :pencil: Contributing
Your contribution to the `need-water-desktop` is essential for the evolution of the project, you can do it as follows:
- Open an [issue](https://github.com/wesleyara/need-water-desktop/issues) to clear doubts, report bugs or give ideas
- Open a [pull request](https://github.com/wesleyara/need-water-desktop/pulls) to give ideas for code improvement, implementation of new features and bug fixesThese are just some of the ways you can contribute to the project read the [CONTRIBUTING](https://github.com/wesleyara/need-water-desktop/blob/main/.github/CONTRIBUTING.md) for more information
# :adult: Authors
## ✨ Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Thanks for the contributors people in [electron-vite-react](https://github.com/electron-vite/electron-vite-react), this project is based in your template.This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
# :page_facing_up: License
need-water-desktop is a open source project licensed as [MIT](LICENSE).
# 🚨 Be aware
This template integrates Node.js API to the renderer process by default. If you want to follow **Electron Security Concerns** you might want to disable this feature. You will have to expose needed API by yourself.
To get started, remove the option as shown below. This will [modify the Vite configuration and disable this feature](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#config-presets-opinionated).
```diff
# vite.config.tsexport default {
plugins: [
- // Use Node.js API in the Renderer-process
- renderer({
- nodeIntegration: true,
- }),
],
}
```