diff options
| author | real-zephex <[email protected]> | 2024-03-20 08:23:23 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-20 08:23:23 +0530 |
| commit | f127db3349d0fa8da0f9dd3636ccc9ca1b994eb5 (patch) | |
| tree | 55afcca9f787be2f27df412e71b6f6dc7d5569bb /README.md | |
| parent | fix: redirects to 404 when an anime stream is not available (diff) | |
| download | dramalama-f127db3349d0fa8da0f9dd3636ccc9ca1b994eb5.tar.xz dramalama-f127db3349d0fa8da0f9dd3636ccc9ca1b994eb5.zip | |
Update README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 45 |
1 files changed, 39 insertions, 6 deletions
@@ -1,11 +1,44 @@ -# Dramalama-Next +## Dramalama -A rewrite version of the rewrite version (dramalama-react) of Dramalama. This original version of dramalama was originally written in vanilla JS. +Dramalama is an online service where you can watch kdramas and anime for free. -# Features +<p align="center"> + <img width="300" height="300" src="https://github.com/real-zephex/Dramalama/assets/143923795/add2af15-7d1a-4185-8c48-c31be488d559"> +</p> -I have tried to improve the overall layout, functionalities and performance of the website by incorporating features provided by Next.js such as page routing, image serving, server side rendering and much more. +## Description -# Contributions +This web application is written using Next.JS framework and fetches it data via [Consumet API](https://github.com/consumet/api.consumet.org). The anime section is mostly server rendered so you can expect some good performance out of it. However, kdrama is section is not server rendered as it was originally written in React and I just copy pasted the code from there to here. -Contributors are welcome. Fork this repository, make your changes and create a pull request. +*However, I am planning to rewrite the kdrama section and make it server rendered* + +## Features + +#### Kdrama +- User can search for dramas by their title +- Have tried to adapt to all screen sizes +- HLS streams, meaning the quality will adapt to your network conditions automatically. + +#### Anime +- Top airing animes and recent episode releases are shown on the homepage. +- User can search for animes by their title. +- Due to server side rendering, the requests are cached meaning if you visit a specific episode of some anime and then try to revisit it again then it will constantly load. It can benefit other users who are trying to watch the same anime. +- [Vidstack](https://www.vidstack.io/) has been used as video player. + +## Deployment + +You can pretty easily deploy it on vercel or on your local machine. +1. Make sure you have npm installed. +2. Clone this repository: `git clone https://github.com/real-zephex/Dramalama` +3. `cd` into the directory. +4. Execute `npx next` and it will start your web server. + +Alternatively, you can link your repository to vercel and have your very own streaming website. + +## Content Guidelines + +Dramalama doesn't stores any data. It fetches it data through Consumet API which in turns scrapes other websites to get that stream. If you have any problem, then try contacting the owner of those websites. + +## Contributing + +Contributors are welcome!! |