Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@ilb/dossier-ui

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ilb/dossier-ui

``` npm i @ilb/classifiercomponent ```

latest
Source
npmnpm
Version
2.3.29
Version published
Maintainers
0
Created
Source

Установка:

npm i @ilb/classifiercomponent

Пример (классификация не работает):

git clone https://github.com/ilb/classifiercomponent.git
npm i
cp .env.example .env
npm run dev

Перейти на http://127.0.0.1:3010

Использование:

Задать переменную apps.loandossier.dossierDocumentPath в .env

Клиент:

<Classifier uuid={uuid} name="classifier" schema={classifierSchema} />

Пример schema: https://github.com/ilb/classifiercomponent/blob/master/src/mocks/schema.mjs

Сервер:

// pages/api/classifications/[...classifier].js
import { ClassifierApi } from "@ilb/classifiercomponent/src/server.mjs";
import { createScope } from "../../../libs/usecases/index.mjs";
import { onError, onNoMatch } from "../../../libs/middlewares/index.mjs";

export const config = {
  api: {
    bodyParser: false,
  },
};

export default ClassifierApi(createScope, onError, onNoMatch);

В DI должна быть переменная dossierBuilder являющаяся экземпляром класса DossierBuilder

И, случае использования классификатора: verificationService, verificationRepository, classifierQuantity

FAQs

Package last updated on 22 Jan 2025

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