Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
cordova-import-npm
Advanced tools
Import files from npm packages into your cordova www directory automatically, upon cordova prepare or cordova build
Import files from npm packages into your cordova www/
directory automatically, upon cordova prepare
, cordova build
or cordova run
, and before anything else is processed.
Oftentimes we want to import the latest files available in npm packages into our www/
directory in cordova projects. With this module you can do it automatically without building your own scripts.
Just run in the root directory of your cordova project
npm install cordova-import-npm
npx setup-cordova-import-npm
It will add a hook into config.xml
with the type before_prepare
, such that npm files that you setup will be imported automatically upon cordova prepare
, cordova build
or cordova run
. It will also create an empty file npmFilesToImport.json
at the root of your project for you to setup.
npmFilesToImport.json
You define the npm files you'd like to import by editing the file npmFilesToImport.json
at the root of the project's directory. The syntax is the following:
{
"npmPackageName": {
"from": "path/to/file/relative/to/npmModule/directory",
"to": "path/to/file/relative/to/cordovaWWW/directory"
}
}
The paths may be strings or arrays, though arrays are recommended as then it works in either unix or windows file systems.
Use an array of objects {from:, to:}
to copy more than one file for each package.
Imagine you wanted the latest jquery and bootstrap files on your www/js/res/
and www/css/res/
directories. Just run:
npm install jquery bootstrap
npm install cordova-import-npm
npx setup-cordova-import-npm
And then edit your npmFilesToImport.json
with this info:
{
"jquery": {
"from": ["dist", "jquery.min.js"],
"to": ["js", "res", "jquery.min.js"]
},
"bootstrap": [
{
"from": ["dist", "js", "bootstrap.min.js"],
"to": ["js", "res", "bootstrap.min.js"]
},
{
"from": ["dist", "css", "bootstrap.min.css"],
"to": ["css", "res", "bootstrap.min.css"]
}
]
}
Then every time you run cordova prepare
, cordova build
or cordova run
, the npm files will be copied before anything else is processed, from the respective package modules to the www/
directory.
FAQs
Import files from npm packages into your cordova www directory automatically, upon cordova prepare or cordova build
The npm package cordova-import-npm receives a total of 57 weekly downloads. As such, cordova-import-npm popularity was classified as not popular.
We found that cordova-import-npm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.