
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
glovjs-build
Advanced tools
API Stability: LOW - under active development
A build system tailored for JavaScript game development, focused on fast, incremental builds with live updates of assets in many shapes and sizes. Created primarily for large projects built on GLOV.js in order to address the many shortcomings of other options that exhibit themselves as a project grows in size.
const gb = require('glovjs-build');
gb.configure({
source: 'src',
statedir: 'out/.gbstate',
targets: {
dev: 'out',
},
});
gb.task({
name: 'copy',
input: 'txt/*.txt',
type: gb.SINGLE, // Type SINGLE - `func` is called once per changed input file
target: 'dev',
func: function copy(job, done) {
job.out(job.getFile());
done();
},
});
gb.task({
name: 'concat',
input: [
'txt/*.txt',
'txt/*.asc',
],
type: gb.ALL, // Type ALL - `func` is called once with all input files
target: 'dev',
func: function concatSimple(job, done) {
let files = job.getFiles();
let buffer = Buffer.concat(files.filter(a => a.contents).map(a => a.contents));
job.out({
relative: 'concat.txt',
contents: buffer,
});
done();
},
});
gb.task({
name: 'default',
deps: ['copy', 'concat'],
});
gb.go({
tasks: ['default'],
watch: true,
});
FAQs
GLOV.js Build System
We found that glovjs-build 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.