Closed mylastore closed 4 years ago
Hi there! We are happy to help but we need more information about your problem.
Are you getting an error message?
The best way to get help is to share a GitHub repository or code snippet with the minimal setup to reproduce your issue.
(First please check that this issue is not already solved as described here)
Tell us what should happen
Tell us what happens instead
Tell us about the applicable parts of your setup.
Module versions (especially the part that's not working):
NodeJS version:
Operating System:
Browser Version:
React Native Version:
Module Loader:
I am user sapper/svelte for client node v 10.16.3 I am getting this error on the chrome developers console. All I am doing is importing the feathers client startup code into my sapper start up js file witch is call client.js and get those errors below.
This error on google console
Uncaught TypeError: Failed to resolve module specifier "events". Relative references must start with either "/", "./", or "../".
I get this on the terminal
'events' is imported by node_modules/@feathersjs/feathers/lib/events.js, but could not be resolved – treating it as an external dependency 'events' is imported by commonjs-external-events, but could not be resolved – treating it as an external dependency
events
is marked as a dependency of @feathersjs/feathers
in its package.json
. If it can't be resolved it is probably some misconfiguration with your package manager.
I am trying to set up the feathers client side with the code below but getting the error about. Node v10.16.3 Using sveltejs/sapper on client