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

cross-import

Package Overview
Dependencies
Maintainers
1
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cross-import

Import .ts, .mjs, .cjs files across environments as JavaScript modules

  • 1.4.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Import .ts, .mjs, .cjs files across environments as JavaScript modules

NPM Version NPM Version NPM package ( download / month ) Follow @mastercorg Github release actions


  • Import .ts in .js
  • Import .mjs in .cjs
  • Import .cjs in .mjs
  • ...

Getting Started

npm install cross-import

Usage

import crossImport from 'cross-import'
crossImport(
    source: string | fg.Pattern[],
    options?: fg.Options
): any

Import .ts in .js

foo.ts

export * from './bar'
export const foo = 'foo'

bar.ts

export const bar = 'bar'

index.js

crossImport('./foo.ts')
// {"bar": "bar", "foo": "foo"}

And so on...

Import format-multiple JS config

This is often used to read various user-defined configuration files like master.css.ts, next.config.js, vite.config.mjs ...

index.js

crossImport('master.css.{js,ts,cjs,mjs}')
// {"bar": "bar", "foo": "foo"}

Options

Inherited from fast-glob options

{
    cwd: process.cwd()
}

NPM Version

Keywords

FAQs

Package last updated on 18 Dec 2022

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