I have an existing project and I want to recode it with VueJs. I need to import a npm package called TaffyDB. I figured out that I have to import it in the main.js. I have to admit that I don't have any idea how to do that or how the syntax is exactly.
import WHAT from "WHERE";
taffydb is installed and I find the folder "taffydb" within my node_modules folder. In that folder is the taffy.js file.
What I don't know is how to find the details for "WHERE" and "WHAT".
Any help is appreciated.
Do a npm install first on taffy
npm install --production taffy
then after that go to the code you want to use it on and require itTAFFY = require( 'taffy' ).taffy;
in the documentation it says require it try it that way instead of doing import from.Check the documents to https://www.npmjs.com/package/taffydb#use-it-in-nodejs
and http://taffydb.com/
I hope this helps you out !