https://github.com/apfirebolt/data-structures-and-algorithms-in-javascript
Some DS and Algo programs in Javascript
https://github.com/apfirebolt/data-structures-and-algorithms-in-javascript
algorithms algorithms-and-data-structures data-structures javascript primevue vue2
Last synced: about 1 month ago
JSON representation
Some DS and Algo programs in Javascript
- Host: GitHub
- URL: https://github.com/apfirebolt/data-structures-and-algorithms-in-javascript
- Owner: Apfirebolt
- Created: 2021-05-22T05:01:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-10T19:09:49.000Z (over 4 years ago)
- Last Synced: 2025-01-21T00:45:39.091Z (over 1 year ago)
- Topics: algorithms, algorithms-and-data-structures, data-structures, javascript, primevue, vue2
- Language: JavaScript
- Homepage:
- Size: 138 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue Data Structures and Algorithms
A simple dinosaur info app to show dino data in form of table using ag-grid and related libraries.






## Table of Contents
1. [Project Briefing](#project-briefing)
2. [Technologies Used](#technologies-used)
3. [Screenshots](#screenshots)
4. [Updates](#updates)
5. [Thank You](#thank-you)
## Project Briefing
This repository would have some solutions of data structures and algorithm related problems using Vue JS components.
## Technologies Used
- Vue 3
- Vite
- JavaScript (ES6+)
- HTML5
- CSS3
## Writing Test cases
Test cases are written using Vitest framework. Install the related dependencies for the testing framework and tweak vite config settings.
```Javascript
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
test: {
environment: 'happy-dom',
},
server: {
port: 8080
}
})
```

## Updates
- **v1.0.0**: Initial release with basic functionality.
- **v1.1.0**: Added new features and improved performance.
## Thank You
Thank you for exploring the Vue Dino App! Feel free to contribute or provide feedback to help improve the project. If you liked this project consider giving it a ⭐
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).