
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
generator-qmui
Advanced tools
A Yeoman generator for QMUI Web
First, install Yeoman and generator-qmui using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-qmui
Then generate your new project on your target directory:
yo qmui
Available generators:
Sets up a new QMUI Web project on your target directory, generating all the directories and files you need to get started, and guide you to configure the project.
Example:
yo qmui
Generates a HTML file containing the basic code.
Example:
yo qmui:html fileName
Produces fileName.html:
<!DOCTYPE html>
<html lang="zh-cmn">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<meta name="renderer" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>Page Title</title>
</head>
<body>
</body>
</html>
For generator that outputs HTML template, the —-include option will output template that uses QMUI Include Syntax rather than native HTML.
Example:
yo qmui:html fileName --include
Produces fileName.html
@@include('./_header.html', {
"title": "Page Title"
})
@@include('./_footer.html')
Generates a scss file that conforms to the QMUI format.
Example:
yo qmui:scss fileName
Produces fileName.scss:
@charset "UTF-8";
/**
* fileName.scss
* @author Your OS Username
* @date Today
*
*/
Generates a style file that conforms to the QMUI format.
Example:
yo qmui:css fileName
Produces fileName.css:
/**
* fileName.css
* @author Your OS Username
* @date Today
*
*/
Generates a JavaScript file that fits in the QMUI workflow in order to implement custom tasks.
Example:
yo qmui:task fileName
Produces fileName.js:
// Task Name
module.exports = function (gulp, common) {
var taskName = 'Task Name';
gulp.task(taskName, function (done) {
// Custom task logic code
common.util.log('execute succeed');
done();
});
// Task Description (For gulp list)
common.tasks[taskName] = {
description: 'Custom Task'
};
};
MIT © QMUI Team
FAQs
A Yeoman generator for QMUI Web
We found that generator-qmui 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.