https://github.com/wmde/vuex-helpers
Helper functions to ease working with Vuex, Centralized State Management for Vue.js.
https://github.com/wmde/vuex-helpers
util vue vuejs vuex
Last synced: 13 days ago
JSON representation
Helper functions to ease working with Vuex, Centralized State Management for Vue.js.
- Host: GitHub
- URL: https://github.com/wmde/vuex-helpers
- Owner: wmde
- License: gpl-2.0
- Created: 2019-09-13T07:28:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:45:11.000Z (about 2 years ago)
- Last Synced: 2025-04-03T22:36:47.176Z (23 days ago)
- Topics: util, vue, vuejs, vuex
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@wmde/vuex-helpers
- Size: 460 KB
- Stars: 4
- Watchers: 22
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vuex-helpers
Helper functions to ease working with Vuex, Centralized State Management for Vue.js.## Development
The following examples use `docker` and `docker-compose` to ease creating a level playing field for development but are not essential to this project.
### Building Docker image
```sh
# ensure the node user uses your user id, so you own created files
docker-compose build --build-arg UID=$(id -u) --build-arg GID=$(id -g) node
```### Installation
```sh
docker-compose run --rm node npm install
```### Running code quality tools
```sh
docker-compose run --rm node npm test
```