🚀 DAY 1 OF LAUNCH WEEK: Reachability for Ruby Now in Beta.Learn more →
Socket
Book a DemoInstallSign in
Socket

ubel

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ubel

ubel is a Back-end FrameWork based on express. it's most like a boilerplate than a framework

latest
npmnpm
Version
2.0.0
Version published
Maintainers
0
Created
Source

UBEL Framework

ubel is a backend framework based on Express, designed to function as a boilerplate to streamline the development of web applications. It includes built-in features for generating Mongoose schemas, controllers, and routes. ubel also facilitates the setup of authentication and authorization systems and provides a pre-defined file structure for easy project management.

Features

  • Mongoose Schema Generator: Automatically create schemas with one command.
  • Controller and Routes Generator: Quickly generate RESTful controllers and routes.
  • Authentication System: Build an entire authentication system with a single command.
  • Authorization: Includes protected routes to manage access control.
  • File Structure: Pre-defined boilerplate for organizing your project efficiently.

Installation

  • Clone the repository:

    ```bash npm install ubel ```

  • Navigate to the project directory:

    ```bash cd ubel-project ```

  • Install dependencies:

    ```bash npm install ```

Commands

1. Generate Mongoose Schema, Controller, and Routes

ubel provides a command to quickly create Mongoose schemas, controllers, and routes based on the object properties you specify.

Example:

```bash ubel reelseiden user atribute:mongooseSchema type (string, number,date) ```

This command generates:

  • User Mongoose schema
  • User controller
  • RESTful routes for the User model

2. Generate Authentication System

ubel can generate a complete authentication system using the following command:

```bash ubel sorganeil ```

This command will:

  • Create a User model with properties such as first_name, last_name, email, password, phone, status, and role.
  • Generate an authentication controller with routes (login, register, etc.).
  • Set up JWT-based authentication for the project.

File Structure

The framework provides a well-organized file structure to keep your project modular and easy to navigate. Here's an example:

``` ubel-framework/ │ | ├── models/ ├── controllers/ ├── routes/ ├── middlewares/ |── config/ |── app.js |── .env │ └── README.md ```

Usage

ubel Create Project

To create a new project using ubel, follow these steps:

  • Run the generate command to create Mongoose models, controllers, and routes:

    ```bash ubel generate objectname propertyName:propertyType ```

  • If your project requires authentication, run the following command to set up the authentication system:

    ```bash ubel sorganeil ```

    This will copy authentication system files into your src directory.

  • Customize the generated files based on your project requirements.

Authentication and Authorization

After generating the authentication system, you will have access to several endpoints:

  • Register: /api/register
  • Login: /api/login
  • Protected Routes: Use middleware to protect routes based on user roles and permissions.

Requirements

  • Node.js (v14+)
  • MongoDB
  • Express
  • Mongoose

Contributing

Contributions are welcome! If you would like to contribute to the ubel framework, feel free to submit pull requests or open issues.

FAQs

Package last updated on 06 Sep 2024

Did you know?

Socket

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.

Install

Related posts