Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Vue.js 2 Design Patterns and Best Practices

You're reading from   Vue.js 2 Design Patterns and Best Practices Build enterprise-ready, modular Vue.js applications with Vuex and Nuxt

Arrow left icon
Product type Paperback
Published in Mar 2018
Publisher Packt
ISBN-13 9781788839792
Length 344 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Paul Halliday Paul Halliday
Author Profile Icon Paul Halliday
Paul Halliday
Arrow right icon
View More author details
Toc

HTTP


Let's start off by creating a new Vue.js project that we can use as a playground project. Type the following in your Terminal:

# Create a new Vue project
$ vue init webpack-simple vue-http

# Navigate to directory
$ cd vue-http
# Install dependencies
$ npm install

# Run application
$ npm run dev

There are many ways to create HTTP requests within JavaScript. We'll be using the Axios library to use a simplified promise-based approach within our project. Let's install it by typing the following in our Terminal:

# Install Axios to our project
$ npm install axios --save

We now have the ability to create HTTP requests; we just need an API to point Axios towards. Let's create a mock API.

Installing JSON server

In order to create a mock API, we can use the json-serverlibrary. This allows us to get up-and-running globally quickly by just creating adb.jsonfile inside of our project. It effectively creates a GET, POST, PUT, PATCH, and DELETE API and stores the data in a file, appended to our original...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime
Visually different images