Socket
Socket
Sign inDemoInstall

node-red-contrib-face-recognition

Package Overview
Dependencies
348
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.1.1

10

face-api.js

@@ -54,2 +54,12 @@ module.exports = function (RED) {

// Create a descriptor file path if it does not exist
async function checkDescriptorDir() {
const saveDir = `${__dirname}/descriptors`;
if (!fs.existsSync(saveDir)){
fs.mkdirSync(saveDir);
RED.log.info("[Face-a-pi.js] - Created descriptors directory at " + saveDir)
}
}
checkDescriptorDir()
// Input Node constructor

@@ -56,0 +66,0 @@ function faceApiInputNode(config) {

2

package.json
{
"name": "node-red-contrib-face-recognition",
"version": "1.1.0",
"version": "1.1.1",
"description": "A wrapper node for the epic face-api.js library",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc