A recipe search application made with javascript.
Explore the docs »
View Demo
Table of Contents
Forkify is a vanilla JavaScript application that interacts with the Forkify API to fetch and display recipe food data. This app uses modern JavaScript tools, such as Webpack to bundle the modules, and Babel to convert ES6, ES7 and ES8 back to ES5. The user can search for a specific recipe, and save to a favorites list via local storage. The user can easily increase or decrease servings as per his need and can view detailed directions.
This app is built with pure vanilla JavaScript along with HTML and SCSS. It uses webpack as module bundler and NPM as package manager.
To get started with project just simply fork this repo or download locally on your System.
To get a local copy up and running follow these simple example steps.
Start with the latest version of NPM to avoid any errors:
- npm
npm install npm@latest -g
- Get a free API Key at Forkify API_KEY
- Clone the repo
git clone https://github.com/BarBronsthein/forkify-v2.git
- Install NPM packages
npm install
- Enter your API in
config.js
const KEY = 'ENTER YOUR API';
-
The Forkify Recipe App allows users to search for recipes.
-
Users can view the recipe along with the cook time and also increase or decrease the amount of servings they need.
-
Bookmarked recipes are stored in local storage so no database was required for this application.
Distributed under the MIT License. See LICENSE
for more information.