3.0.27 • Published 4 months ago

esm-import-directory v3.0.27

Weekly downloads
5
License
MIT
Repository
github
Last release
4 months ago

esm-import-directory

Import a directory of modules using es6 modules import

Usage

import path from 'path';
import importDirectory from 'esm-import-directory';

const __dirname = import.meta.dirname;

(async () => {
  // import as array, eg. [{ hello: 'world' }]
  const typeDefs = await importDirectory(path.join(dirname, 'typeDefs'));

  // import with paths, eg. { 'filename.mjs': { hello: 'world' } }
  const typeDefPaths = await importDirectory(path.join(dirname, 'typeDefs'), {
    paths: true,
  });
})();

Options

  • recursive (boolean) - traverse modules recursively. Default: false.
  • paths (boolean) - modules returned as an object with relative paths vs as an array. Default: false.
  • filename (boolean) - only return the filename without the extension. Default: true for paths.
  • default (boolean) - extract default from es6 modules. Default: true.
  • extensions (array) - the file extension types to process. Default: '.mjs'
3.0.27

4 months ago

3.0.23

5 months ago

3.0.24

5 months ago

3.0.21

5 months ago

3.0.22

5 months ago

3.0.25

5 months ago

3.0.26

5 months ago

3.0.20

5 months ago

3.0.18

5 months ago

3.0.19

5 months ago

3.0.16

5 months ago

3.0.17

5 months ago

3.0.14

5 months ago

3.0.15

5 months ago

3.0.13

5 months ago

3.0.12

5 months ago

3.0.10

5 months ago

3.0.11

5 months ago

2.6.1

6 months ago

3.0.4

5 months ago

3.0.3

5 months ago

3.0.2

5 months ago

3.0.1

5 months ago

3.0.8

5 months ago

3.0.7

5 months ago

3.0.6

5 months ago

3.0.5

5 months ago

3.0.0

6 months ago

2.6.0

7 months ago

2.5.0

1 year ago

2.4.1

3 years ago

2.4.0

4 years ago

2.3.8

5 years ago

2.3.7

5 years ago

2.3.6

5 years ago

2.3.5

5 years ago

2.3.4

5 years ago

2.3.3

5 years ago

2.3.2

5 years ago

2.3.1

5 years ago

2.3.0

5 years ago

2.2.0

5 years ago

2.0.0

5 years ago

1.4.0

6 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago