Convert JSON String To A JSON Object In Nuxt js Application

Aeturnum
Aeturnum
Published in
1 min readNov 21, 2021

Hi folks, today will see how to create a nuxt js application from scratch. Today the simple web application will be to convert a JSON string to a JSON object. This article intends to give you an idea of how to create a simple nuxt application.

  • First will select a better terminal for the project setting up process. I recommend you install it on your windows machine.
  • Then move to your project location using cmder and run npm init nuxt-app json-converter to create the nuxt application. I selected the below configurations in the installation process.
  • Open the project using your favorite IDE, mine it’s visual studio code. So I’ll go with it.
  • Run npm run dev command to open our initial site via the browser as below.
  • Then will remove unnecessary files from the initial project and let’s create our application.
  • We can delete the left-side navigation drawer by removing v-navigation-drawer component from default.vue file. (from line number 3 to 26 as in the below image)

You can check out my repo from https://github.com/SajithNew16/jsonConverter

Cheers !!!

Originally published at https://chamaraliyanage604.medium.com on November 21, 2021.

--

--