![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@all-in-js/utils
Advanced tools
常用的脚本操作函数集合,避免易出bug的点,统一交互风格
npm i @all-in-js/utils
该包提供了一批易出bug的函数、易于调用的函数,如resolve, resolveCWD, resolveDirname, resolveHome等
// 有文件更改则提交更改
const { git } = require('@all-in-js/utils');
const { clean } = git.hasChanges;
if (!clean) {
git.commitAll('update sth.');
}
const { log } = require('@all-in-js/utils');
log.info('msg', 'tag');
const { spinner } = require('@all-in-js/utils');
spinner.step('start...');
// do sth
spinner.success('success');
const { npm } = require('@all-in-js/utils');
const pkgTags = npm.tag.list('@all-in-js/utils');
const { DDWebhook } = require('@all-in-js/utils');
const secret = 'srcret';
const webhook = 'webhook';
new DDWebhook({
secret,
webhook
}).sendMessage('msg')
.then(console.log)
.catch(console.log);
const { astCtrl } = require('@all-in-js/utils');
function visitorCreater(t) {
//
}
const code = astCtrl('code', visitorCreater);
持续完善中,欢迎加入!
FAQs
> 常用的脚本操作函数集合,避免易出bug的点,统一交互风格
We found that @all-in-js/utils 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.