At first, I install faker using the command npm i faker
Now i am trying to run my npm server up
npm run start.
But i am getting the following error. Can some one please help me here and thanks in advance.
**Compiled with problems:X
ERROR in ./src/context/Context.js 5:0-26
Module not found: Error: Can't resolve 'faker' in shoppingcartapplication\src\context**
import React, { createContext } from 'react';
import faker from "faker";
const Cart = createContext();
faker.seed(20);
const Context = ({ children }) => {
const products = [...Array(20)].map(() => ({
id: faker.datatype.uuid(),
name: faker.commerce.productName(),
price: faker.commerce.price(),
image: faker.random.image(),
inStock: faker.random.arrayElement([0, 3, 5, 6, 7]),
fastDelivery: faker.datatype.boolean(),
ratings: faker.random.arrayElement([1, 2, 3, 4, 5]),
}));
console.log(products);
return (
(
<Cart.Provider >
{children}
</Cart.Provider>
)
)
}
export default Context;
faker is deprecated first remove your old package
then get a new package
and import it like this
check here for more info