
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@maacgo/sms
Advanced tools
MAAC Go SMS — send Taiwan SMS in 3 lines from Node. NCC-compliant, NT$50 free trial. Pairs with @maacgo/mcp for AI agent use.
Taiwan-first SMS API. Send SMS in 3 lines.
npm install @maacgo/sms
import { Maacgo } from '@maacgo/sms';
const sms = new Maacgo(process.env.MAACGO_API_KEY);
await sms.send({
to: '+886912345678',
body: '【你的品牌】驗證碼 123456,5 分鐘內有效。',
});
Create that key from:
API · 金鑰test or production keynew Maacgo(apiKey, opts?)apiKey: your sk_live_ or sk_test_ key from API · 金鑰 after signing in at https://sms.cresclab.comopts.baseUrl: override default API URL (for self-hosted / staging)opts.timeout: request timeout ms (default 15000)sms.send({ to, body, from?, type? })Send one message.
const r = await sms.send({ to: '+886912345678', body: '【你的品牌】訂單 #1234 已出貨' });
// r = { message_id: 'sms_abc', status: 'delivered', segments: 1, cost_cents: 75, balance_cents: 4925 }
sms.broadcast({ body, recipients, name?, scheduled_at? })Send to many.
const r = await sms.broadcast({
name: '週年慶',
body: '【你的品牌】週年慶 5 折起!',
recipients: ['+886912345678', '+886987654321'],
});
// r = { broadcast_id: 'bcast_...', status: 'sent', recipient_count: 2, delivered: 2 }
sms.list({ limit, status })const { messages, summary_7d } = await sms.list({ limit: 50, status: 'delivered' });
sms.balance()const { balance_cents } = await sms.balance();
try {
await sms.send({ to: '09XXX', body: '【...】Hi' });
} catch (err) {
if (err.data?.error === 'ncc_blocked') {
console.log('NCC compliance failed:', err.data.issues);
} else if (err.data?.error === 'insufficient_balance') {
console.log('Please top up');
}
}
Verify X-Cresclab-Signature:
import { createHmac } from 'node:crypto';
app.post('/webhooks/cresclab', (req, res) => {
const sig = req.headers['x-cresclab-signature'];
const expected = createHmac('sha256', process.env.CRESCLAB_WEBHOOK_SECRET)
.update(JSON.stringify(req.body))
.digest('hex');
if (sig !== expected) return res.status(401).end();
// handle req.body.event
res.status(200).end();
});
MIT
FAQs
MAAC Go SMS — send Taiwan SMS in 3 lines from Node. NCC-compliant, NT$50 free trial. Pairs with @maacgo/mcp for AI agent use.
We found that @maacgo/sms demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.