question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Beta test the pre-release

See original GitHub issue

A 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

  1. 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
  1. Feathers services are now untouched. This means the .vuex method is gone, as is the vuexOptions object.

I would love it if somebody could try this out with Nuxt and let me know how it goes.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:8
  • Comments:14 (7 by maintainers)

github_iconTop GitHub Comments

3reactions
LinusBorgcommented, Aug 24, 2017

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.

3reactions
LinusBorgcommented, Aug 23, 2017

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found