Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@nebula.js/cli-sense
Advanced tools
npm install @nebula.js/cli
nebula sense
Build a supernova as a Qlik Sense extension
Options:
--version Show version number [boolean]
--ext Extension definition [string]
--meta Extension meta information [string]
--minify Minify and uglify code [boolean] [default: true]
--sourcemap Generate sourcemaps [boolean] [default: false]
-h, --help Show help [boolean]
You can provide some additional information as part of the Qlik Sense Extension API by creating a separate file for the extension info and providing it as argument to --ext
:
// def.js
export default {
definition: {
// Property panel definition
},
support: {
exportData: true,
},
};
nebula sense --ext def.js
The provided file will be transpiled and placed in the folder /dist-ext
. Two additional files will be created which are the entrypoints for the extension in Qlik Sense; If your supernova module is named banana-chart
, the files banana-chart.js
and banana-chart.qext
will be created in the root of your project. If you have a files
property in your package.json
you should include these files in addition to the already existing ones:
{
"name": "banana-chart",
"files": [
"// other files",
"dist-ext",
"banana-chart.js"
"banana-chart.qext"
]
}
You can add more meta about the extension by providing a .json
formatted file with --meta
:
{
"name": "My tasty banana extension",
"icon": "barchart"
}
nebula sense --meta meta.json
The rest of the required information will be populated automatically.
FAQs
Build a supernova as a Qlik Sense extension
The npm package @nebula.js/cli-sense receives a total of 488 weekly downloads. As such, @nebula.js/cli-sense popularity was classified as not popular.
We found that @nebula.js/cli-sense demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.