Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apfirebolt/amiibo_api_database_in_nuxt
An application in Nuxt using the Amiibo API
https://github.com/apfirebolt/amiibo_api_database_in_nuxt
amiibo-api composable-architecture headlessui nuxt nuxt3 pinia tailwindcss
Last synced: 21 days ago
JSON representation
An application in Nuxt using the Amiibo API
- Host: GitHub
- URL: https://github.com/apfirebolt/amiibo_api_database_in_nuxt
- Owner: Apfirebolt
- License: other
- Created: 2024-12-24T18:24:14.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2024-12-24T19:17:08.000Z (23 days ago)
- Last Synced: 2024-12-24T19:39:05.471Z (23 days ago)
- Topics: amiibo-api, composable-architecture, headlessui, nuxt, nuxt3, pinia, tailwindcss
- Language: Vue
- Homepage:
- Size: 927 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![Nuxt.js](https://img.shields.io/badge/Nuxt.js-00C58E?style=for-the-badge&logo=nuxtdotjs&logoColor=white)
![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white)
![Vue.js](https://img.shields.io/badge/Vue.js-4FC08D?style=for-the-badge&logo=vue-dot-js&logoColor=white)
![Pinia](https://img.shields.io/badge/Pinia-FFD700?style=for-the-badge&logo=pinia&logoColor=white)
![API Integration](https://img.shields.io/badge/API_Integration-FF5733?style=for-the-badge&logo=api&logoColor=white)# Amiibo Nuxt Database
This is a hobby project created in Nuxt JS to test the features of Nuxt and getting hands-on experience with the framework.
The project utilizes the [Amiibo API](https://www.amiiboapi.com/) to fetch data about various Amiibo figures. The Amiibo API provides the following features:- Retrieve information about all available Amiibo figures.
- Get details about specific Amiibo, including name, series, and release dates.
- Access Amiibo images and artwork.
- Filter Amiibo data by game series, character, and type.This integration allows the application to display up-to-date information about Amiibo figures dynamically.
This project is deployed https://amiibo-api-database-in-nuxt.vercel.app for the time being.
Please Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more about Nuxt framework which is built on top of Vue JS.
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
## Features
- [Nuxt.js](https://nuxt.com/)
- [Tailwind CSS](https://tailwindcss.com/)
- [Headless UI](https://headlessui.dev/)
- [Pinia](https://pinia.vuejs.org/)## Screenshots
First image shows the screenshot of the homepage where you can perform debounced search operation which gets results if they match from the API.
![Screenshot 1](./screenshots/1.jpeg)
Second image is the screenshot of all the goods available related to games.
![Screenshot 2](./screenshots/2.png)
This image shows the detail page of a given game related articles.
![Screenshot 3](./screenshots/3.png)
## Installation
First, clone the repository:
```bash
git clone https://github.com/Apfirebolt/amiibo_api_database_in_nuxt
cd amiibo_nuxt_database
```Then, install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Usage
### Development
To start the development server:
```bash
# npm
npm run dev# pnpm
pnpm dev# yarn
yarn dev# bun
bun run dev
```### Production
To build the application for production:
```bash
# npm
npm run build# pnpm
pnpm build# yarn
yarn build# bun
bun run build
```To preview the production build locally:
```bash
# npm
npm run preview# pnpm
pnpm preview# yarn
yarn preview# bun
bun run preview
```## Configuration
### Tailwind CSS
Tailwind CSS is configured in the `tailwind.config.js` file. You can customize it according to your needs.
### Headless UI
Headless UI components can be used as described in the [Headless UI documentation](https://headlessui.dev/).
### Pinia
Pinia is configured in the `store` directory. You can create and manage your stores as described in the [Pinia documentation](https://pinia.vuejs.org/).
## License
This project is licensed under the MIT License.