npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

autocode-ai

v2.0.56

Published

An innovative automatic coding tool that generates projects from README.md using Claude 3.5 Sonnet API

Downloads

230

Readme

AutoCode

AutoCode is an innovative automatic coding tool designed to bootstrap any software project incrementally, transforming README.md instructions into a fully functional software project using Claude 4 Sonnet, Gemini 2.5 Pro and others. AutoCode was bootstrapped by itself from one simple prompt.

Features

  • NodeJS-based console application
  • Automatic code generation based on README.md instructions
  • Incremental project building
  • Creates and modifies source files in the current folder and subfolders
  • Self-updating README.md with new design ideas and considerations
  • Code quality checks and suggestions/auto fixes
  • Automatic dependency management and creation of missing files
  • Adherence to DRY, KISS, and SRP principles
  • Intelligent code analysis and refactoring suggestions
  • Automated documentation generation
  • User-friendly command-line interface
  • Support for multiple programming languages
  • AI-powered agents for specialized tasks
  • Cross-platform compatibility (Windows, macOS, Linux)
  • Syntax checking and auto-fixing

Installation

No installation is required. AutoCode can be run directly using npx.

Usage

  1. Create CLAUDE_KEY (GEMINI_KEY, OPENAI_KEY) environment variable (get your key here https://console.anthropic.com/settings/keys)
  2. Navigate to your project folder in the terminal.
  3. Run the following command:
npx autocode-ai
  1. Select your model from menu
  2. Follow the prompts and watch as your project comes to life!

How It Works

AutoCode reads your README.md file and your sources and sends the instructions to the Claude 3.5 Sonnet API. The API interprets the instructions and generates the necessary code structure, files, and content. AutoCode then saves the generated code back to your project directory. It can now generate code for different languages based on the project requirements and applies language-specific linting and formatting.

Requirements

  • Node.js (version 20.0.0 or higher)
  • Use async/await, ES6 modules, and fetch (no axios please)

Boilerplate

  • https://github.com/msveshnikov/boiler-plate (MERN stack with auth, roles, payments, chat, notifications, settings, admin panel and more)
  • put your project description in README.md
  • start brainstorming (p.1)
  • replace "boiler" with your project name in all source files
  • generate code (p.2) - not too much at once (5-7 files max)
  • revisit README often, it is your main source of truth. Remove unrealistic goals and tasks.
  • your MVP ready in 2-3 hours
  • fix deploy to your VPS/nginx/certbot/docker

Project Structure

  • codeAnalyzer.js: Analyzes existing code for quality and improvement opportunities
  • codeGenerator.js: Generates new code based on instructions and API responses
  • config.js: Manages configuration settings for the application, including language-specific configs
  • documentationGenerator.js: Automatically generates documentation for the project
  • fileManager.js: Handles file operations and project structure management
  • index.js: Main entry point of the application
  • userInterface.js: Manages user interactions and command-line interface
  • landing.html: Template for generating project landing pages
  • licenseManager.js: Handles license management and validation
  • server/index.js: Express.js backend main point
  • server/license-server.js: Route for license management

Supported Languages

AutoCode currently supports the following programming languages:

  • JavaScript (including TypeScript)
  • Python
  • C#
  • Java
  • Ruby
  • Go
  • Rust
  • PHP
  • Swift
  • Kotlin
  • Dart

Each language has its own configuration for file extensions, recommended linter, formatter, and package manager.

TODO