Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toadkicker/nuxt-crud-example
An example of creating restful interfaces quickly with Nuxt.js
https://github.com/toadkicker/nuxt-crud-example
Last synced: 2 months ago
JSON representation
An example of creating restful interfaces quickly with Nuxt.js
- Host: GitHub
- URL: https://github.com/toadkicker/nuxt-crud-example
- Owner: toadkicker
- License: mit
- Created: 2018-07-29T04:43:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-21T22:48:03.000Z (over 1 year ago)
- Last Synced: 2024-04-15T00:01:02.184Z (9 months ago)
- Language: Vue
- Homepage: https://itnext.io/quickly-building-restful-uis-in-nuxtjs-782bce539440
- Size: 3.41 MB
- Stars: 118
- Watchers: 8
- Forks: 42
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - toadkicker/nuxt-crud-example - An example of creating restful interfaces quickly with Nuxt.js (Vue)
- awesome - toadkicker/nuxt-crud-example - An example of creating restful interfaces quickly with Nuxt.js (Vue)
README
# crud-example
> An example project for building RESTful interfaces with Nuxt.js. Built to support the article [Quickly Building RESTful UI's in NuxtJS](https://itnext.io/quickly-building-restful-uis-in-nuxtjs-782bce539440).
## Build Setup
``` bash
# install dependencies
$ yarn install# serve with hot reload at localhost:3000
$ yarn run dev# start a fake json server using https://github.com/typicode/json-server
$ npm install -g json-server
$ $ node fake-server.js# build for production and launch server
$ yarn run build
$ yarn run start# generate static project
$ yarn run generate
```For detailed explanation on how things work, checkout the [Nuxt.js docs](https://github.com/nuxt/nuxt.js).