بنقرة واحدة
bundler-analyze
Analyze JS bundle size with Vite/Webpack analyzers
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Analyze JS bundle size with Vite/Webpack analyzers
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
| name | bundler-analyze |
| description | Analyze JS bundle size with Vite/Webpack analyzers |
Use the bash tool to analyze JavaScript bundle sizes.
Node.js (required for npx):
brew install nodesudo apt install nodejs npmRun npm run build first to generate stats; then use npx with vite-bundle-visualizer, webpack-bundle-analyzer, etc.
npx vite-bundle-visualizer 2>/dev/null
# generates stats.html
npx rollup-plugin-visualizer 2>/dev/null
npx webpack-bundle-analyzer stats.json 2>/dev/null
# First generate stats:
npx webpack --profile --json > stats.json
# Check build output sizes
ls -lhS dist/assets/*.js 2>/dev/null | head -20
ls -lhS dist/assets/*.css 2>/dev/null | head -10
# Total bundle size
du -sh dist/ 2>/dev/null
npx import-cost <file.ts> 2>/dev/null