Open Source Computer Vision Library compiled into a npm package
!npm
!npm bundle size
!Libraries.io SourceRank
!Snyk Vulnerabilities for npm package
!npm
!NPM
Please note that this package is not maintained by the OpenCV team/contributors.
This package is updated whenever a new OpenCV version is released officially. By using the package in your OpenCV based Node.js project, you don't need to manually place the opencv.js file or worry about keeping it up to date later.
npm update will automatically fetch the updates, if any, just like any other package.
Also, the release numbers are synced with the official OpenCV releases for easy tracking. (Available v3.3.1+)

npm i --save opencv4jsWith this package, you can skip placing the opencv.js file (as mentioned in the tutorials) and use the following code to import it:
``javascript`
cv = require('opencv4js');
instead of
`javascript`
cv = require('./opencv.js');
Or
replace
`javascript`
global.cv = require('./opencv.js'); `
with javascript``
global.cv = require('opencv4js');
Rest of the usage will be similar to the official docs and no other changes are required.
For more information, see the accompanying LICENSE file.