This is a Tauri application for receiving crypto price alerts, built with Svelte and Vite, created using the create-tauri-app
command. After reading the 7th chapter of the Rust book, I wanted to jump in and build something.
- Fetching of crypto prices from the Binance public websocket API
- Real-time crypto price alerts based on set prices
- A couple of fun sounds to choose from
-
Clone the repository:
git clone https://github.com/forever8896/cryptick.git cd cryptick
-
Install dependencies:
npm install
To run the application in development mode with live-reloading, use the following command:
npm run tauri dev
This will start the Tauri development server and open the application. Any changes you make to the source files will automatically trigger a reload, allowing you to see your changes in real-time.
To build the application for production:
npm run tauri build
The executable will be located in the src-tauri/target/release
directory.
Run the executable found in src-tauri/target/release
to start the application.
Currently, it only works on desktop, but I chose Tauri with the vision of making it cross-platform in the future.
VS Code + Svelte + Tauri + rust-analyzer.
Feel free to open issues or submit pull requests for improvements and bug fixes.