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 🙏

© 2024 – Pkg Stats / Ryan Hefner

final-api-cli

v1.0.2

Published

node cli for create a node rest api

Downloads

199

Readme



npm license issues GitHub stars


✨ Key Features

  • Automatic Code Generation: Instantly create a fully functional REST API with modular architecture.

  • Supports Multiple Databases: Compatible with SQL and NoSQL databases. likes MySQL, PostgreSQL, MongoDB, and more.

  • Comprehensive Testing: Pre-configured with testing frameworks to ensure code quality.

  • Docker Integration: Out-of-the-box Docker support for easy containerization and deployment.

  • Optimized Codebase: Follows industry standards and best practices for maintainable and scalable code.

  • Environment Configuration: .env files for environment-specific settings.

📦 Installation

Install final-api-cli globally using npm:

npm install -g final-api-cli

🛠️ Commands

final-api-cli offers a variety of commands to help you quickly scaffold and manage your API projects:

help

Displays a list of available commands and their descriptions.

fac -h | fac --help

version

Displays the current version of the CLI.

fac -v | fac --version

init

Creates a new API project.

fac -i [route-name] | fac --init [route-name]

route

Creates a new API route.

fac -r [route-name] | fac --route [route-name]

model

Generates a new model.

fac -m [model-name] | fac --model [model-name]

controller

Creates a new controller.

fac -c [controller-name] | fac --controller [controller-name]

endpoint

Generates a new API endpoint with route, model, and controller.

fac -e [endpoint-name] | fac --endpoint [endpoint-name]

🌐 API Information

The REST API generated by Final API CLI is designed to be robust, scalable, and easy to maintain. It follows best practices for RESTful architecture, provides extensive support for Docker containerization, environment variable configuration, process management, and comprehensive testing, including unit, integration, and end-to-end tests. Below is a breakdown of some key endpoints provided by the generated API:

Health Check

  • GET /api/health - Check the health status of the API.

File Operations

  • POST /api/upload - Upload a file to the server.
  • GET /api/download/:file-name - Download a file from the server.

User Management

  • GET /api/users - Retrieve a list of all users.
  • GET /api/users/:id - Retrieve details of a specific user.
  • POST /api/users - Create a new user.
  • PUT /api/users/:id - Update an existing user's information.
  • DELETE /api/users/:id - Remove a user from the system.

📚 Documentation

Comprehensive documentation is available for all commands and configurations. You can also refer to the official documentation for more detailed information.

📝 Repository

Check out the source code on GitHub.

🙌 Contributing

Contributions are welcome! Feel free to fork this project, submit issues, and create pull requests. Please refer to the CONTRIBUTING file for more details on our contribution guidelines.

📝 License

Distributed under the MIT License See LICENSE for more information.

💬 Feedback and Support

If you encounter any issues or have questions, feel free to open an issue on the GitHub repository. Your feedback is valuable and helps us improve the tool.