https://github.com/byron-villegas/fe-amiibo
App to view amiibos by series.
https://github.com/byron-villegas/fe-amiibo
amiibo-api bootstrap font-awesome nightwatch typescript vue vue3
Last synced: 2 months ago
JSON representation
App to view amiibos by series.
- Host: GitHub
- URL: https://github.com/byron-villegas/fe-amiibo
- Owner: byron-villegas
- License: mit
- Created: 2025-05-17T15:22:28.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-17T15:57:16.000Z (5 months ago)
- Last Synced: 2025-07-09T17:09:23.152Z (3 months ago)
- Topics: amiibo-api, bootstrap, font-awesome, nightwatch, typescript, vue, vue3
- Language: TypeScript
- Homepage: https://fe-amiibo.vercel.app
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fe-amiibo
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
npm install
```### Compile and Hot-Reload for Development
```sh
npm run dev
```### Type-Check, Compile and Minify for Production
```sh
npm run build
```### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```### Run Unit Tests with Coverage
```sh
npm run test:unit:coverage
```### Run End-to-End Tests with [Nightwatch](https://nightwatchjs.org/)
```sh
# When using CI, the project must be built first.
npm run build# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chrome
npm run test:e2e -- --env chrome
# Runs the tests of a specific file
npm run test:e2e -- tests/e2e/example.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
```
### Lint with [ESLint](https://eslint.org/)```sh
npm run lint
```