
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
@vue/cli-shared-utils
Advanced tools
The @vue/cli-shared-utils package provides a set of utilities for Vue CLI and Vue projects. These utilities include functions for logging, validation, module loading, and other common tasks needed by Vue CLI plugins and other project tooling.
Logging
Provides functions to output log messages with different levels of importance.
const { log, warn, error } = require('@vue/cli-shared-utils');
log('This is a log message.');
warn('This is a warning message.');
error('This is an error message.');
Validation
Includes functions to validate strings such as project names.
const { validateProjectName } = require('@vue/cli-shared-utils');
const projectName = 'example';
if (validateProjectName(projectName)) {
log('Project name is valid.');
} else {
error('Project name is invalid.');
}
Module Loading
Provides a function to safely load modules that may or may not be present in the project.
const { loadModule } = require('@vue/cli-shared-utils');
const moduleName = 'vue';
const module = loadModule(moduleName, __dirname);
if (module) {
log(`Loaded ${moduleName} module.`);
} else {
error(`Failed to load ${moduleName} module.`);
}
Lodash is a utility library offering a wide range of methods for tasks like data manipulation, testing, and logic. It's more general-purpose compared to @vue/cli-shared-utils, which is tailored for Vue CLI.
Chalk is a library for styling terminal text. It offers functionality similar to the logging aspect of @vue/cli-shared-utils but is focused solely on text styling and does not provide logging levels.
Yargs is a library to help build command-line tools. It provides argument parsing which is a different scope compared to @vue/cli-shared-utils, but both are used in CLI environments.
shared-utils for vue-cli
FAQs
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.