Abhishek Kochar
Abhishek Kochar

Reputation: 27

Error TS2307: Cannot find module 'fabric-shim'

I am relatively new to blockchain. Trying to set up the project but getting an error TS2307: Cannot find module 'fabric-shim'.

node_modules/fabric-contract-api/types/index.d.ts:10:51 - error TS2307: Cannot find module 'fabric-shim' 10 import { ChaincodeStub, ClientIdentity } from 'fabric-shim';

Any help would be appreciated. Thanks in advance!

Upvotes: 0

Views: 800

Answers (1)

TarithJ
TarithJ

Reputation: 21

Try running this in the cli

npm install --save fabric-shim

Upvotes: 1

Related Questions