New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

import-adjutor

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

import-adjutor

Parse ecmascript modules and collect names of export vars, functions, etc.

latest
Source
npmnpm
Version
2.2.0
Version published
Weekly downloads
2
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

import-adjutor

Parse ecmascript modules and collect names of export vars, functions, etc.
Ex- esm-exports

Usage

echo json | import-adjutor

Where json is (JSON.stringified object):

{
    command: string;
    args: object;
}

Output structure (JSON.stringified):

API

insertImport

command: 'insertImport';
args:
    declaration: Declaration;
    sourceFileContent: string;
    manipulationSettings?: Partial<ManipulationSettings> & { noSemicolon?: boolean };
    sorted: boolean = false;
type Declaration = {
    name: string;
    specifier: string;
    isDefault?: boolean;
};
interface ManipulationSettings extends SupportedFormatCodeSettingsOnly {
    /** Indentation text */
    indentationText: IndentationText;
    /** New line kind */
    newLineKind: NewLineKind;
    /** Quote type used for string literals. */
    quoteKind: QuoteKind;
    /**
     * Whether to enable renaming shorthand property assignments, binding elements,
     * and import & export specifiers without changing behaviour.
     * @remarks Defaults to true.
     * This setting is only available when using TypeScript 3.4+.
     */
    usePrefixAndSuffixTextForRename: boolean;
    /** Whether to use trailing commas when inserting or removing nodes. */
    useTrailingCommas: boolean;
}

Output:

string

exportsNodeModules

command: 'exportsNodeModules';
args:
    directory: string;
    project?: Project;
    folderExcludePatterns?: string[];
    fileExcludePatterns?: string[];

Output:

Array <{
    name: string;
    module?: string;
    filepath?: string;
    isDefault?: boolean;
}>,

exportsFromDirectory

command: 'exportsFromDirectory';
args:
    directory: string;
    project?: Project;
    folderExcludePatterns?: string[];
    fileExcludePatterns?: string[];

If directory will contains tsconfig.json or jsonconfig.json then source files will be added according to include, exclude patterns. folderExcludePatterns, fileExcludePatterns will be ignored.

Output:

Array <{
    name: string;
    module?: string;
    filepath?: string;
    isDefault?: boolean;
}>,

Resources

Keywords

esm

FAQs

Package last updated on 11 Sep 2021

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