Yumgram is unofficial telegram react web app. It is based on the MTProto protocol and has an Open API.
That said, I'm using this app myself and I'd like to share its sources, so anyone can contribute to the development. Any help is welcome!
The app is based on the react framework, and it was bootstrapped with create react app. UI components are developed based on antd. The vscode is the primary development IDE with airbnb eslint config.
Simplicity and minimalism are the core design principle . Every react component manage by a controller based on pipe hook In the project directory, you can run the app:
> git clone https://github.com/YumcoderCom/yumgram
> cd yumgram
> npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
> cd yumgram
> npm run test
Storybook is a user interface development environment and playground for UI components. The tool enables developers to create components independently and showcase components interactively in an isolated development environment. Start Storybook with:
> cd yumgram
> npm run storybook
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
> cd yumgram
> npm run build
See the section about deployment for more information.