Installations
npm install babel-plugin-experimental-syntax-dynamic-import
Developer Guide
Typescript
No
Module System
N/A
Node Version
10.8.0
NPM Version
6.2.0
Score
70.2
Supply Chain
87.2
Quality
75.2
Maintenance
100
Vulnerability
100
License
Releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Developer
59naga
Download Statistics
Total Downloads
1,061
Last Day
4
Last Week
5
Last Month
6
Last Year
116
GitHub Statistics
6 Stars
17 Commits
2 Watching
1 Branches
1 Contributors
Bundle Size
782.00 B
Minified
443.00 B
Minified + Gzipped
Package Meta Information
Latest Version
0.0.2
Package Id
babel-plugin-experimental-syntax-dynamic-import@0.0.2
Unpacked Size
60.86 kB
Size
17.39 kB
File Count
7
NPM Version
6.2.0
Node Version
10.8.0
Total Downloads
Cumulative downloads
Total Downloads
1,061
Last day
0%
4
Compared to previous day
Last week
400%
5
Compared to previous week
Last month
20%
6
Compared to previous month
Last year
-24.7%
116
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Experimental syntax dynamic import
plugin of automate default access at dynamic import.
Installation
yarn add babel-plugin-experimental-syntax-dynamic-import
Usage
Real dynamic-import syntax will force the .default
, but this plugin will omit it.
1// index.js 2(async () => { 3 var assert = await import("assert"); 4})();
1babel index.js --plugins=experimental-syntax-dynamic-import
becomes:
1(async () => { 2 var assert = (await import("assert")).default; 3})();
If you want to do multiple imports using destructuring objects, this plugin doesn't transform anything.
1(async () => { 2 var { strictEqual, deepEqual } = await import("assert"); 3})();
becomes(nothing happens):
1(async () => { 2 var { strictEqual, deepEqual } = await import("assert"); 3})();
See also
License
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/17 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
license file not detected
Details
- Warn: project does not have a license file
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
32 existing vulnerabilities detected
Details
- Warn: Project is vulnerable to: GHSA-67hx-6x53-jw92
- Warn: Project is vulnerable to: GHSA-93q8-gq69-wqmw
- Warn: Project is vulnerable to: GHSA-grv7-fg5c-xmjg
- Warn: Project is vulnerable to: GHSA-c6rq-rjc2-86v2
- Warn: Project is vulnerable to: GHSA-3xgq-45jj-v275
- Warn: Project is vulnerable to: GHSA-w573-4hg7-7wgq
- Warn: Project is vulnerable to: GHSA-8r6j-v8pm-fqw3
- Warn: Project is vulnerable to: MAL-2023-462
- Warn: Project is vulnerable to: GHSA-qqgx-2p2h-9c37
- Warn: Project is vulnerable to: GHSA-9c47-m6qq-7p4h
- Warn: Project is vulnerable to: GHSA-6c8f-qphg-qjgp
- Warn: Project is vulnerable to: GHSA-4xc9-xhrj-v574
- Warn: Project is vulnerable to: GHSA-x5rq-j2xg-h7qm
- Warn: Project is vulnerable to: GHSA-jf85-cpcp-j695
- Warn: Project is vulnerable to: GHSA-p6mc-m468-83gw
- Warn: Project is vulnerable to: GHSA-29mw-wpgm-hmr9
- Warn: Project is vulnerable to: GHSA-35jh-r3h4-6jhm
- Warn: Project is vulnerable to: GHSA-952p-6rrq-rcjv
- Warn: Project is vulnerable to: GHSA-f8q6-p94x-37v3
- Warn: Project is vulnerable to: GHSA-vh95-rmgr-6w4m / GHSA-xvch-5gv4-984h
- Warn: Project is vulnerable to: GHSA-fhjf-83wg-r2j9
- Warn: Project is vulnerable to: GHSA-hj48-42vr-x3v9
- Warn: Project is vulnerable to: GHSA-c2qf-rxjj-qqgw
- Warn: Project is vulnerable to: GHSA-4g88-fppr-53pp
- Warn: Project is vulnerable to: GHSA-4jqc-8m5r-9rpr
- Warn: Project is vulnerable to: GHSA-g4rg-993r-mgx7
- Warn: Project is vulnerable to: GHSA-3jfq-g458-7qm9
- Warn: Project is vulnerable to: GHSA-r628-mhmh-qjhw
- Warn: Project is vulnerable to: GHSA-9r2w-394v-53qc
- Warn: Project is vulnerable to: GHSA-5955-9wpr-37jh
- Warn: Project is vulnerable to: GHSA-qq89-hq3f-393p
- Warn: Project is vulnerable to: GHSA-f5x3-32g6-xq36
Score
1.3
/10
Last Scanned on 2025-01-13
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More