Beta test the pre-release
See original GitHub issueA Beta version of 1.0.0 is available and published on npm. If you would like to try it out, just do
npm install feathers-vuex@pre
You can find docs in the 1.0
branch readme.md:
https://github.com/feathersjs/feathers-vuex/tree/1.0
The internal API stays almost 100% the same, and only the general usage instructions change. The big breaking changes are
- No more using it as a Feathers plugin. This design was flawed and required complicated logic, making it more difficult to maintain. It also caused problems with SSR. Configuration is all done inside the Vuex store:
import Vue from 'vue'
import Vuex from 'vuex'
import feathersClient from '../feathers-client'
import feathersVuex from 'feathers-vuex'
const { service, auth } = feathersVuex(feathersClient)
Vue.use(Vuex)
const store = new Vuex.Store({
plugins: [
service('todos'),
auth()
]
})
export default store
- Feathers services are now untouched. This means the
.vuex
method is gone, as is thevuexOptions
object.
I would love it if somebody could try this out with Nuxt and let me know how it goes.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:8
- Comments:14 (7 by maintainers)
Top Results From Across the Web
Prerelease Versions and Beta Testers - Apple Developer
Prerelease Versions and Beta Testers. Manage your beta testing program, including beta testers and groups, apps, App Clips, and builds.
Read more >What's the difference between Alpha, Beta, Pre-release, and ...
Beta : Product is feature-complete and being tested internally by Itasca consultants and select clients. Pre-release: At the discretion of the software Product ......
Read more >Software release life cycle - Wikipedia
The beta phase generally begins when the software is deemed feature complete, yet likely to contain several known or unknown bugs. Software in...
Read more >Welcome to Tableau's Pre-Release and User Research ...
Welcome to Tableau's Pre-Release and User Research Community ... This program community enables us to make early software and other feedback opportunities ...
Read more >Quality Assurance Handbook | Testing / Testing - Prerelease
Google Play Beta/TestFlight testing is used so that limited (invited) users can test applications in the production environment. Once the app is ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
When we have a paginated service, feathers-vuex currently swallows that information, it’s not added to the state. I think it should be, we need some way to get the total after we made a paginated call with
dispatch('users/find')
for example.So i have been testing this, but only in a small app that’s in the early stages, so only 3 services and auth, but so far it works really nice!
the new API is really good.