
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Universal CLI tool for creating modern TypeScript packages with npm availability checking
Universal CLI tool for creating modern TypeScript packages with comprehensive SDK templates, npm availability checking, and professional tooling setup.
npx @microfox/cli kickstart
npm install -g @microfox/cli
microfox kickstart
npx @microfox/cli kickstart
This command will:
The CLI accepts any valid npm package name:
my-awesome-package@myorg/my-awesome-package✅ Interactive Package Creation - Asks for package name during setup
✅ NPM Availability Checking - Automatically checks if your package name is available
✅ Interactive Name Selection - Prompts for alternatives if name is taken
✅ Modern TypeScript Setup - Full TypeScript configuration with strict mode
✅ Minimal Code Templates - Simple SDK structure with commented examples
✅ Basic Test Suite - Vitest configuration with example tests
✅ Code Quality Tools - ESLint and Prettier pre-configured
✅ Professional Structure - Based on popular open-source packages
✅ Simple Documentation - Auto-generated README with minimal examples
✅ Modern Build System - tsup for fast, modern bundling
✅ Git Ready - Includes .gitignore and proper file structure
kickstart - Kickstart a new TypeScript SDK package with modern toolingWhen you run the CLI, it creates a complete package with:
my-package/
├── src/
│ ├── index.ts # Main exports
│ ├── myPackageSdk.ts # Main SDK class
│ ├── types/
│ │ └── index.ts # TypeScript interfaces
│ ├── schemas/
│ │ └── index.ts # Zod validation schemas
│ └── __tests__/
│ └── myPackage.test.ts # Comprehensive tests
├── docs/ # Documentation directory
├── package.json # Modern package configuration
├── package-info.json # Package metadata
├── tsconfig.json # TypeScript configuration
├── tsup.config.ts # Build configuration
├── vitest.config.ts # Test configuration
├── .eslintrc.js # Linting rules
├── .prettierrc # Code formatting
├── .gitignore # Git ignore rules
├── README.md # Comprehensive documentation
└── CHANGELOG.md # Version history
After creating a package:
import { MyPackageSdk } from 'my-package';
const sdk = new MyPackageSdk({
apiKey: 'your-api-key',
baseUrl: 'https://api.example.com',
});
// Example hello method (replace with your own methods)
const result = await sdk.hello('World');
console.log(result.data); // "Hello, World! Welcome to my-package SDK."
// TODO: Add your own SDK methods
// const data = await sdk.getData('123');
// const created = await sdk.createItem({ name: 'Example' });
MIT
FAQs
Universal CLI tool for creating modern TypeScript packages with npm availability checking
The npm package microfox receives a total of 5 weekly downloads. As such, microfox popularity was classified as not popular.
We found that microfox 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.