Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
grunt-sails-linker
Advanced tools
Autoinsert script tags (or other filebased tags) in an html file.
This plugin requires Grunt ~0.4.x
or ^1.0.0
.
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-sails-linker --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-sails-linker');
In your project's Gruntfile, add a section named sails-linker
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
'sails-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: Function
Default value: undefined
Optional function which takes the filepath
as argument and returns a String
inserted as reference to the script file. Note that option.fileRef
takes precedence over option.fileTmpl
.
Type: String
Default value: ''
The root of the application. Script links are relative from this folder.
Type: Boolean
Default value: false
Reference files using a relative url.
Type: Boolean
Default value: false
Pass the contents of a file rather than the filepath into fileTmpl
. For example, if options.inline
is set to true
and fileTmpl
is set to <script>%s</script>
, the script contents will be injected between <script>
tags.
First, please check out the relevant documentation in Concepts > Assets. If you have further questions or are having trouble, click here.
To report a bug, click here.
Please observe the guidelines and conventions laid out in the Sails project contribution guide when opening issues or submitting pull requests.
Copyright © 2013 Scott Laursen Copyright © 2013 Zoli Kahan
The Sails framework is free and open-source under the MIT License.
FAQs
Autoinsert script and link tags in an html file.
We found that grunt-sails-linker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.