New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@foerderfunke/matching-engine

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@foerderfunke/matching-engine

Checks eligibilities by validating a user profile against requirement profiles

0.2.6
npm
Version published
Weekly downloads
27
170%
Maintainers
1
Weekly downloads
 
Created
Source

matching-engine

  • Input: user profile, requirement profiles, datafield constraints, materialization queries
  • Output: a report about eligibilities (yes, no, missing data)

In use in the foerderfunke-app.

Developing this library

# to build the distributions
npm run build
# to run dev.js
npm start

Using this library as dependency

npm install --save @foerderfunke/matching-engine

require

# package.json
{
  "dependencies": {
    "@foerderfunke/matching-engine": "^0.2.0"
  }
}

# dev.js
const { func } = require("@foerderfunke/matching-engine")
func()

# node dev.js

import

# package.json
{
  "type": "module",
  "dependencies": {
    "@foerderfunke/matching-engine": "^0.2.0"
  }
}

# dev.js
import { func } from "@foerderfunke/matching-engine"
func()

# node dev.js

in the browser

# dev.html
<!DOCTYPE html>
<html>
<body>
    <script src="node_modules/@foerderfunke/matching-engine/dist/bundle.umd.js"></script>
    <script>
        MatchingEngine.func();
    </script>
</body>
</html>

FAQs

Package last updated on 29 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts