A simple online Pokédex using PokéAPI.
View Demo
Install the latest version of npm, on the command line, run the following command:
> npm install -g npm
Once you have npm installed you can run the following both to install and upgrade Yarn:
> npm install --global yarn
Follow the steps below to get started with this project's development environment.
> git clone https://github.com/VichithLy/pokedex-vue-tailwindcss
> cd pokedex-vue-tailwindcss/
> yarn install
> yarn serve
yarn serve
App running at:
- Local: http://localhost:8080/
- Network: http://xxx.xxx.x.x:8080/
Open the link in your browser. You're now ready to develop!
If you want to compile and minify the project for production, use
> yarn build
To lint and fix files, use
> yarn lint
.
├── ...
├── src
│ ├── assets # Images, icons and style files
│ ├── components # Vue Components
│ ├── composables # Composable functions (for Vue Composition API)
│ ├── constants # Mostly enumerations (types, regions, etc.)
│ ├── data # Static JSON data (regions, types, Pokémon)
│ ├── router # Vue router configuration
│ ├── services # PokéAPI requests
│ ├── store # Vuex configuration
│ ├── utils # Useful functions
│ └── views # Main pages of the app
└── ...
MIT License
Copyright (c) 2022 Julien MILLOT and Vichith LY
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Julien MILLOT - https://github.com/Jilvo
Vichith LY - ly.vichith@gmail.com - https://github.com/VichithLy
Project link: https://github.com/VichithLy/pokedex-vue-tailwindcss