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

nft

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nft

将目录树转为对象树

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
12
increased by140%
Maintainers
1
Weekly downloads
 
Created
Source

NFT

将目录树的路径信息转换为镜像JS对象结构

install

  npm install nft

使用方法

let NFT = require('nft')

let modules = NFT(options)

NFT(options)

  • options Object

    • path String - 指定递归目录(必填)

    • contain Array - 仅包含指定文件或目录,不能与exclude同时使用(可选)

    • exclude Array - 排除指定文件或目录,不能与contain同时使用(可选)

    • file(filePath, filename) Function - 文件类型递归触发函数

      • filePath String - 文件绝对路径

      • fileName * - 包含后缀的文件名

    • directory(dirPath, dirName) Function - 目录类型递归触发函数

      • dirPath Object - 目录绝对路径

      • dirName Object - 目录名称

示例

let NFT = require('batch-import')

let files = NFT({
 "extend": {
      "path": "app/extend",
      "exclude": ['e'],
      file(filePath, filename) {

      },
      directory(dirPath, dirName) {

      }
   },
   "controllers": {
      "path": "app/controllers",
      "contain": ["_route.js"],
      "exclude": ['c1'],
      file(filePath, filename) {

      },
      directory(dirPath, dirName) {

      }
   },
   "models": {
      "path": "app/models",
      "exclude": ['c1.js'],
      file(filePath, filename) {

      },
      directory(dirPath, dirName) {

      }
   }
})

FAQs

Package last updated on 06 Sep 2018

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