Hi there,
I'm a newbie.
I cloned the git repository locally, then installed node js.
Then, in my project folder, I ran
npm init -y
And then:
$ ls package.json
package.json
$ npm install @openzeppelin/contracts
Then I get this warning
> node install.js
SOLINK_MODULE(target) Release/.node
CXX(target) Release/obj.target/fse/fsevents.o
In file included from ../fsevents.cc:6:
In file included from ../../../../nan/nan.h:2884:
**../../../../nan/nan_typedarray_contents.h:34:43:** **warning:** **'GetContents' is**
**deprecated: Use GetBackingStore. See http://crbug.com/v8/9908.**
**[-Wdeprecated-declarations]**
A huge list that goes on in this way:
> 1 warning generated.
SOLINK_MODULE(target) Release/fse.node
ld: warning: text-based stub file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd and library file /System/Library/Frameworks//CoreFoundation.framework/CoreFoundation are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CoreServices.framework/CoreServices.tbd and library file /System/Library/Frameworks//CoreServices.framework/CoreServices are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork.tbd and library file /System/Library/Frameworks//CFNetwork.framework/Versions/A/CFNetwork are out of sync. Falling back to library file for linking.
ld: warning: text-based stub file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents.tbd and library file /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents are out of sync. Falling back to library file for linking.
And then after an endless warning marathon, I get this:
> 61 packages are looking for funding
run `npm fund` for details
found 25 vulnerabilities (12 **low** , 13 high)
run `npm audit fix` to fix them, or `npm audit` for details
What should I do?