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 or cordova build
Oftentimes we want to import files available in npm modules into our www/
directory in cordova projects.
Just run in the root directory of your cordova project
npm i cordova-import-npm
It will add a hook at your hooks directory (if you have none defined in config.xml
it will use hooks/
) and edit your config.xml
accordingly, such that npm files that you set will be imported upon cordova prepare
or cordova build
You define the npm files you'd like to import by editing the file npmFilesToImport.json
. 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 to copy more than one file for each package.
Imagine you wanted the latest jquery and bootsrap files on your www/js/res/
and www/css/res/
directories. Just run
npm i cordova-import-npm
npm i jquery bootstrap
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 run cordova prepare
or cordova build
and the npm files will be copied before anything else is processed.
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.