
Security News
Microsoft Releases Open Source Toolkit for AI Agent Runtime Security
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.
mini-publish
Advanced tools
npm install -g mini-publish
You should create a configuration file. Example:
// YOUR-CONFIG-FILE.js
module.exports = {
name: 'SomeProject',
sourceDir: __dirname,
includes: [
'/some-dir/'
],
ignores: [
'.git',
'.DS_Store',
'.idea',
'.nyc_output'
'/node_modules/'
],
exeBefore: [
`echo "[Echo in local] Prepare files..."`,
],
exeAfter: [
`echo "[Echo in local] Publish finished"`,
],
remote: {
host: '127.0.0.1',
targetDir: '/var/www/some',
publishBefore: [
`echo "[Echo in remote server] Files uploading..."`,
],
publishAfter: [
`echo "[Echo in remote server] Files has been uploaded."`,
],
}
}
name: project namesourceDir: the path of project which will be upload to serverincludes: items will be include for rsync, it takes higher priority then ignoresignores: items will be exclude for rsyncremote.host: the remote server, such as fang@example.comremote.port: the remote server port, such as 22, default 22remote.targetDir: the remote directory for projectYou can see lib/publish.tmpl for more information.
mini-publish YOUR-CONFIG-FILE.js
You can mini-publish in any project other than JavaScript.
FAQs
Mini publish system.
We found that mini-publish 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
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.

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.