Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Rowadz/Falak
🌑 A real-time server for CrUD operations that happened in MySQL +8 🌑
https://github.com/Rowadz/Falak
dashboard mysql real-time
Last synced: 3 months ago
JSON representation
🌑 A real-time server for CrUD operations that happened in MySQL +8 🌑
- Host: GitHub
- URL: https://github.com/Rowadz/Falak
- Owner: Rowadz
- Created: 2020-12-14T20:34:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-03T13:59:15.000Z (over 2 years ago)
- Last Synced: 2024-07-31T14:02:14.935Z (6 months ago)
- Topics: dashboard, mysql, real-time
- Language: TypeScript
- Homepage:
- Size: 4.22 MB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-jordan - Falak - A real-time dashboard for update, delete, and create operations that happened in MySQL. (NodeJS / Gists)
README
# Falak V2
🌑 A real-time dashboard for CRUD operations that happened in MySQL +8 ( react + express [TypeScript] ) 🌑
> see version 1 [click here](https://github.com/MohammedAl-Rowad/Falak/tree/old-main)
# Examples on what you can do with this
https://user-images.githubusercontent.com/38977667/188273803-01115490-b3f5-4cbe-bdc7-93370b54739e.mp4
https://user-images.githubusercontent.com/38977667/188273789-34f46328-e822-43bc-8dcb-4fbb0047df3e.mp4
https://user-images.githubusercontent.com/38977667/106354514-024f5900-62fb-11eb-8154-ea034ef1a643.mp4
## Running the Falak nestjs server
```bash
$ yarn falak-server
```## Running the Falak react server
```bash
$ yarn falak-react
```## Running the interactive cli
```bash
$ yarn falak
```## Adding capabilities to your workspace
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well.
Below are our core plugins:
- [React](https://reactjs.org)
- `npm install --save-dev @nrwl/react`
- Web (no framework frontends)
- `npm install --save-dev @nrwl/web`
- [Angular](https://angular.io)
- `npm install --save-dev @nrwl/angular`
- [Nest](https://nestjs.com)
- `npm install --save-dev @nrwl/nest`
- [Express](https://expressjs.com)
- `npm install --save-dev @nrwl/express`
- [Node](https://nodejs.org)
- `npm install --save-dev @nrwl/node`There are also many [community plugins](https://nx.dev/community) you could add.
## Generate an application
Run `nx g @nrwl/react:app my-app` to generate an application.
> You can use any of the plugins above to generate applications as well.
When using Nx, you can create multiple applications and libraries in the same workspace.
## Generate a library
Run `nx g @nrwl/react:lib my-lib` to generate a library.
> You can also use any of the plugins above to generate libraries as well.
Libraries are shareable across libraries and applications. They can be imported from `@falak/mylib`.
## Development server
Run `nx serve my-app` for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
## Code scaffolding
Run `nx g @nrwl/react:component my-component --project=my-app` to generate a new component.
## Build
Run `nx build my-app` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
## Understand your workspace
Run `nx graph` to see a diagram of the dependencies of your projects.
## Further help
Visit the [Nx Documentation](https://nx.dev) to learn more.