Gathering detailed insights and metrics for @activepieces/import-fresh-webpack
Gathering detailed insights and metrics for @activepieces/import-fresh-webpack
Gathering detailed insights and metrics for @activepieces/import-fresh-webpack
Gathering detailed insights and metrics for @activepieces/import-fresh-webpack
Import a module while bypassing the cache
npm install @activepieces/import-fresh-webpack
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (87.79%)
TypeScript (12.21%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
283 Stars
35 Commits
24 Forks
7 Watchers
2 Branches
8 Contributors
Updated on Jul 09, 2025
Latest Version
3.3.0
Package Id
@activepieces/import-fresh-webpack@3.3.0
Unpacked Size
4.80 kB
Size
2.31 kB
File Count
5
NPM Version
10.5.2
Node Version
20.13.1
Published on
Jun 26, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
Import a module while bypassing the cache
Useful for testing purposes when you need to freshly import a module.
For ESM, you can use this snippet:
1const importFresh = moduleName => import(`${moduleName}?${Date.now()}`); 2 3const {default: foo} = await importFresh('foo');
This snippet causes a memory leak, so only use it for short-lived tests.
$ npm install import-fresh
1// foo.js 2let i = 0; 3module.exports = () => ++i;
1const importFresh = require('import-fresh'); 2 3require('./foo')(); 4//=> 1 5 6require('./foo')(); 7//=> 2 8 9importFresh('./foo')(); 10//=> 1 11 12importFresh('./foo')(); 13//=> 1
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
security policy file detected
Details
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 8/30 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
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