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

wildayjs

v0.2.0

Published

A Full-Stack JavaScript Web Framework Inspired by Ruby on Rails. If you love Ruby on Rails, you will feel familiar with WildayJS. If you never use Ruby on Rails, you will love WildayJS.

Readme

WildayJS

A Full-Stack JavaScript Web Framework Inspired by Ruby on Rails. If you love Ruby on Rails, you will feel familiar with WildayJS.

If you never use Ruby on Rails, you will love WildayJS.

Overview

WildayJS is designed to make web development in Node.js simple and enjoyable. Following the principles of convention over configuration, it provides a robust foundation for building web applications with minimal setup.

Installation

npm install -g wildayjs

Quick Start

# Create a new WildayJS application
  $ wildayjs new my-app
  $ cd my-app
  $ npm install
  $ npm start

Then open http://localhost:3000 in your browser.

Generate a new controller:

  # posts controller
  $ wildayjs generate:controller posts
  $ wildayjs generate:controller posts index show
  $ wildayjs generate:controller posts index show --api
  $ wildayjs generate:controller admin/posts index

  # users controller
  $ wildayjs generate:controller users index show

Then try:

  $ wildayjs db:init
  $ wildayjs generate:model user name:string email:string
  $ wildayjs db:migrate

If you need to generate model with associations and validations:

  $ wildayjs generate:model user name:string email:string:null:false:unique
  $ wildayjs generate:model post title:string body:text user:references

Creating a new user:

  $ wildayjs console
  > const user = new User({ name: "John Doe", email: "[email protected]" });
  > user.save();
  > user.all();

If you need add new columns to a table:

  $ wildayjs generate:migration AddUsernameToUsers username:string
  $ wildayjs db:migrate

Check the data through the API endpoints:

  GET    /api/users
  GET    /api/users/:id
  POST   /api/users
  PUT    /api/users/:id
  DELETE /api/users/:id

Features

  • MVC Architecture
    • Models: Data handling with validations and associations
    • Views: Template rendering with layout support
    • Controllers: Request handling and response management
  • Database Integration
    • Built-in SQLite, MySQL, and PostgreSQL support
    • Simple migration system
    • Model associations
    • Intuitive query interface with ORM
  • Routing System
    • Convention-based routing
    • RESTful resources
    • Nested routes support
    • Parameter handling
  • WildayJS CLI
    • Generate models, controllers, and views
    • Generate migrations
    • Generate seeds
  • WildayJS Console
    • Interactive console for testing and debugging
    • Execute SQL queries
    • View and manage database tables
    • Execute JavaScript code

Project Structure

my-app/
├── app/
│   ├── controllers/
│   ├── models/
│   └── views/
├── config/
│   ├── application.js
│   ├── routes.js
│   └── server.js
├── db/
│   └── migrations/
├── public/
└── package.json

Note: WildayJS is under active development. Feel free to report issues or suggest features on our GitHub repository. Will publish the first version soon and give the demo what apps can be built with WildayJS. 🚀