Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abhishekrawe/memesto
made a memes web app where you can genrate , edit and delete meme.
https://github.com/abhishekrawe/memesto
app crio crio-summer-of-doing crio-winter-of-doing meme memesto memewebapp web
Last synced: 1 day ago
JSON representation
made a memes web app where you can genrate , edit and delete meme.
- Host: GitHub
- URL: https://github.com/abhishekrawe/memesto
- Owner: abhishekrawe
- Created: 2021-03-06T19:07:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-23T10:50:46.000Z (almost 3 years ago)
- Last Synced: 2023-08-27T15:42:38.932Z (over 1 year ago)
- Topics: app, crio, crio-summer-of-doing, crio-winter-of-doing, meme, memesto, memewebapp, web
- Language: JavaScript
- Homepage: https://memesto.netlify.app/
- Size: 37.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Memesto
**Crio Winter of Doing, Stage-2B**
MemeGen is a web application where the user gives an image as input and our tool generates a meme at one click for the user
ad You can also add the Admin name here and caption for the Meme**Tech Stack used:**
* ReactJS
* ExpressJS
* NodeJS
* Axios
* Cors**Deployed Frontend:** https://memesto.netlify.app/
**Deployed Backend:** https://memesto.herokuapp.com/
**To run frontend:**
cd client
npm install
npm start
**To run backend:**
cd server
npm install
npm start
**Backend API Endpoints:**
| endpoint | method | Description |
| - | - | - |
| **`/memes`** | **GET** | Returns the current state of Database 'memes' |
| **`/memes`** | **POST** | To Post a json having keys`name`,`caption`,`url` |
| **`/memes/`** | **GET** | Returns the value of an Object having key`id` of value `` |
| **`/memes/`** | **PATCH** | Updates the Object in Database 'memes' having key`id` of value ``. Requires json having keys: `caption`,`url` |
| **`/`** | **ALL** | Returns "Hellow" |