Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flat-tree-builder

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flat-tree-builder

A package for building tree structures from flat data

  • 1.0.1
  • npm
  • Socket score

Version published
Weekly downloads
66
increased by11.86%
Maintainers
1
Weekly downloads
 
Created
Source

Классификатор

Тестирование

npm t

Встраивание

Установка npm пакета

npm i flat-tree-builder

html

  • Создайте элемент на странице, куда будет встраиваться элемент, присвойте элементу id

js

  • Импортируйте класс Classifier из classifier.js
  • Создайте экземпляр класса Classifier, где первым параметром передается id элемента, вторым - объект с параметрами

css

  • Подключите файл classifier.css
  • Подключите bootstrap

Объект с параметрами

  • getUrl: url для гет запроса с результатом поиска
  • postClassifierUrl: url для пост запроса с новым классификатором
  • search: если классификатор используется для поиска
  • test: запуск с тестовыми данными

Пример

<link
  rel="stylesheet"
  href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./node_modules/flat-tree-builder/classifier.css" />

<div id="test"></div>
import Classifier from "./node_modules/flat-tree-builder/classifier.js";

const classifier = new Classifier("#test", {
  test: true,
  search: true,
});

FAQs

Package last updated on 18 Oct 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc