Shack-themed notes app built with Electron and React.
Before you begin, ensure you have the following installed on your system:
- Node.js (version 16 or higher recommended)
- npm (comes with Node.js)
- Clone the repository:
git clone https://github.com/Ho1yShif/shack-notes.git
cd shack-notes- Install dependencies:
npm install- Install React dependencies (if not already installed):
npm install react react-dom web-vitalsNote: React and React-DOM are required for the app to function. If you encounter a blank screen when running the app, make sure these dependencies are installed.
To run the application in development mode with hot-reload:
npm run devThis will start the Electron application with the development server running. Any changes you make to the code will automatically reload the app.
To build the application for production:
npm run buildThis compiles the TypeScript code and bundles the application into the dist/ directory.