'How to import "content-based-recommender" package in Reactjs
I am new to React js. I want to implement "Content-Based Recommender" package using npm. After I downloaded it I could not import it. In documentation it said
const ContentBasedRecommender = require('content-based-recommender')
but it is for Node js i think. Can someone help me? Thanks
Solution 1:[1]
I really don't know that package, but all imports in React have these syntaxes
import ContentBasedRecommender from 'content-based-recommender'
or
import { ContentBasedRecommender } from 'content-based-recommender'
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Melendez-dev |