Foto App lets you apply a range of transformation effects to your picture, change format, fine-tune image quality, set corner radius, and rotation angle. And share to your favourite social media platform.
Author:
- Giwa Jossy
After applying the "Vignette" effect, and adjusting the rotation angle 👇🏼
Environments
- Node version - v14.17.0
Technologies:
- NodeJS
- ExpressJS
- Multer
- Cloudinary
note: run all commands in the application's root directory
Install all dependencies
npm install
Database
- get a mongodb uri
- create a .env file [Recommended: Just rename the .env.example file I created in the root directory.]
- set the connection uri as MONGODB_URI in the .env file (i.e MONGODB_URI=<connection uri>)
API Configuration
Create a cloudinary account;
- You will get a <cloud_name>, <api_key>, and <api_secret>
- In the .env file created above, populate the corresponding field for your cloud name, api key, and api secret
Start the application
npm run server
Watch Demo
- DRY Principle
- KISS Principle
- YAGNI Principle
I utilized this principle to make my code more composed and simpler to keep up. And furthermore spare my time at whatever point I need to change something later on.
I utilized this principle to make it simpler for other software engineers to envision the different parts of the applications, intellectually planning the potential impacts of any change.
I utilized this principle since it abstains from investing energy on features that may not be used and helps me avoid feature creep.