Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
grunt-particles-linker
Advanced tools
Autoinsert script tags (or other filebased tags) in an template file
This plugin requires Grunt ~0.4.x
When the task is run the destination file(s) is updated with script tags pointing to all the source files. The reason this plugin was built was to automate the process of inserting script tags when building large web apps.
npm install grunt-particles-linker --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-particles-linker');
In your project's Gruntfile, add a section named particles-linker
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
'particles-linker': {
defaultOptions: {
options: {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
fileTmpl: '<script src="%s"></script>',
appRoot: 'app/'
},
files: {
// Target-specific file lists and/or options go here.
'app/index.html': ['app/scripts/**/*.js']
},
},
},
})
Type: String
Default value: '<!--SCRIPTS-->'
Script tags are places between the startTag and endTag
Type: String
Default value: '<!--SCRIPTS END-->'
Script tags are places between the startTag and endTag
Type: String
Default value: '<script src="%s"></script>'
The template used to insert the reference to the script files.
Type: String
Default value: ''
The root of the application. Script links are relative from this folder.
Type: String
Default value: ''
When inserted into the template, the scripts will be prepended with this value
FAQs
Autoinsert script/style tags in a template file
We found that grunt-particles-linker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.