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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@obliqllc/create-app

v1.0.1

Published

CLI tool to create School Management System with Next.js and Express

Downloads

15

Readme

🎓 Create Oblique App

npm version License: MIT Node.js Version

🚀 The fastest way to create a full-stack School Management System with Next.js and Express.js

Create Oblique App is a CLI tool that scaffolds a complete, production-ready School Management System in seconds. It includes a modern Next.js frontend with TypeScript and Tailwind CSS, paired with a robust Express.js backend.

✨ Features

  • 🎨 Modern Frontend - Next.js 14+ with TypeScript and Tailwind CSS
  • Fast Backend - Express.js with organized folder structure
  • 📁 Complete Project Structure - Pre-configured folders for controllers, models, routes, and more
  • 🔐 Security Ready - Environment variables setup with .env template
  • 📦 Auto Installation - Automatically installs all dependencies
  • 🎯 Production Ready - Best practices and organized architecture
  • 🔧 Easy Configuration - Comes with sensible defaults
  • 📝 Well Documented - Includes README and configuration files

🚀 Quick Start

Using npx (Recommended)

No installation required! Just run:

npx create-oblique-app

Using npm

npm create oblique-app

Global Installation

npm install -g create-oblique-app
create-oblique-app

📺 Demo

$ npx create-oblique-app

╔═══════════════════════════════════════════════════════════╗
║                                                           ║
║     ██████╗ ██████╗ ██╗     ██╗ ██████╗ ██╗   ██╗███████╗║
║    ██╔═══██╗██╔══██╗██║     ██║██╔═══██╗██║   ██║██╔════╝║
║    ██║   ██║██████╔╝██║     ██║██║   ██║██║   ██║█████╗  ║
║    ██║   ██║██╔══██╗██║     ██║██║▄▄ ██║██║   ██║██╔══╝  ║
║    ╚██████╔╝██████╔╝███████╗██║╚██████╔╝╚██████╔╝███████╗║
║     ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚══▀▀═╝  ╚═════╝ ╚══════╝║
║                                                           ║
║            School Management System Generator            ║
║                      Version 1.0.0                       ║
╚═══════════════════════════════════════════════════════════╝

📦 Enter your app name: my-school-app

Creating project: my-school-app
✓ Created project folder: my-school-app
✓ Creating folder structure...
✓ Installing Next.js...
✓ Installing backend dependencies...

🎉 PROJECT CREATED SUCCESSFULLY!

📁 What You Get

my-school-app/
├── web/
│   ├── frontend/
│   │   └── my-school-app/        # Next.js App
│   │       ├── app/               # App Router
│   │       ├── components/        # React Components
│   │       ├── public/            # Static Files
│   │       └── package.json
│   │
│   └── backend/
│       ├── controllers/           # Route Controllers
│       ├── middleware/            # Express Middleware
│       ├── models/                # Data Models
│       ├── routes/                # API Routes
│       ├── responders/            # Response Handlers
│       ├── utils/                 # Utility Functions
│       ├── config/                # Configuration
│       ├── uploads/               # File Uploads
│       │   ├── admin/
│       │   ├── teachers/
│       │   ├── students/
│       │   └── notices/
│       ├── log/                   # Application Logs
│       ├── index.js               # Entry Point
│       └── package.json
│
├── app/                           # Mobile App (Future)
├── config/                        # Project Config
├── docs/                          # Documentation
├── .env                           # Environment Variables
├── .gitignore                     # Git Ignore Rules
└── README.md                      # Project Documentation

🛠️ Tech Stack

Frontend

  • Next.js 14+ - React framework with App Router
  • TypeScript - Type-safe JavaScript
  • Tailwind CSS - Utility-first CSS framework
  • React 18 - Latest React features

Backend

  • Node.js - JavaScript runtime
  • Express.js - Fast web framework
  • CORS - Cross-origin resource sharing
  • Multer - File upload handling
  • Dotenv - Environment management

📖 Usage

1. Create Your App

npx create-oblique-app

Enter your desired app name when prompted.

2. Navigate to Project

cd your-app-name

3. Configure Environment

Edit .env file with your configuration:

NODE_ENV=development
PORT=3001
FRONTEND_URL=http://localhost:3000

# Add your database credentials
DB_HOST=localhost
DB_PORT=5432
DB_NAME=sms_db
DB_USER=your_username
DB_PASSWORD=your_password

# JWT Configuration
JWT_SECRET=your-super-secret-key
JWT_EXPIRE=7d

4. Start Backend Server

cd web/backend
npm run dev

Backend runs on http://localhost:3001

5. Start Frontend Server

cd web/frontend/your-app-name
npm run dev

Frontend runs on http://localhost:3000

🎯 Features Included

Backend API

  • ✅ Express server with organized structure
  • ✅ CORS enabled
  • ✅ File upload support with Multer
  • ✅ Environment variable management
  • ✅ Error handling middleware
  • ✅ Health check endpoint
  • ✅ Logging system
  • ✅ Static file serving

Frontend

  • ✅ Next.js 14 with App Router
  • ✅ TypeScript for type safety
  • ✅ Tailwind CSS pre-configured
  • ✅ Responsive design ready
  • ✅ SEO optimized
  • ✅ Fast refresh enabled

Configuration

  • ✅ ESLint configured
  • ✅ Git ignore setup
  • ✅ Environment variables template
  • ✅ Package.json with scripts
  • ✅ README documentation

🔧 Available Scripts

Backend (web/backend)

npm start       # Start production server
npm run dev     # Start development server with nodemon

Frontend (web/frontend/your-app-name)

npm run dev     # Start development server
npm run build   # Build for production
npm start       # Start production server
npm run lint    # Run ESLint

📚 API Endpoints

Your backend comes with these default endpoints:

  • GET /health - Health check endpoint
  • GET /api - API information and version
  • GET /uploads/* - Serve uploaded files

🤝 Contributing

We welcome contributions! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

🐛 Reporting Issues

Found a bug? Please open an issue with:

  • Description of the issue
  • Steps to reproduce
  • Expected behavior
  • Screenshots (if applicable)
  • Your environment (OS, Node version, etc.)

💡 Use Cases

Perfect for building:

  • 🏫 School Management Systems
  • 📚 Learning Management Platforms
  • 👨‍🎓 Student Information Systems
  • 📊 Educational Dashboards
  • 🎓 Course Management Applications
  • 📝 Assignment Tracking Systems

🔐 Security

  • Environment variables for sensitive data
  • CORS configuration included
  • File upload restrictions ready to configure
  • Input validation structure in place

📦 Requirements

  • Node.js >= 18.0.0
  • npm >= 9.0.0 (or yarn/pnpm)
  • Git (recommended)

🌟 Why Choose Create Oblique App?

  • Fast Setup - Get started in under 2 minutes
  • 🏗️ Best Practices - Industry-standard architecture
  • 📖 Well Documented - Clear documentation and examples
  • 🔄 Actively Maintained - Regular updates and improvements
  • 💪 Production Ready - Deploy with confidence
  • 🎨 Modern Stack - Latest technologies and frameworks
  • 🆓 Free & Open Source - MIT licensed

📝 License

MIT © obliqllc

🔗 Links

💬 Support

Need help? Here's how to get support:

🙏 Acknowledgments

Built with ❤️ by obliqllc

Special thanks to:

  • Next.js team for the amazing framework
  • Express.js community
  • All our contributors

Made with ❤️ for developers who want to build amazing school management systems fast!

⭐ Star us on GitHub if you find this helpful!