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

fastforge

v1.0.18

Published

FastForgeJS makes it easy to create a server and API in a quick and organized way.

Downloads

31

Readme

FastForgeJSBlack FastForgeJS

FastForgeJS is a Framework that makes easy the process to create a server and API in a quick and organized way.

How to install

To install FastForgeJS :

npx fastforge

How to use it

To create a Route, you just need to create a folder in the src directory with the name of the Route, and inside it create a file called code.js or code.ts in case you want to develop in TypeScript (remember that if you created the project in JavaScript and you want to convert it to TypeScript, you should install ts-node and run the project with this module). Inside the src you will find the Middleware and also the file db.js/db.ts, in case you chose to install the support for MySQL.

You can also put dynamic Routes (for example the route 'product/12345' by structuring the folder in the following way:

  • src/product/[id]

and the code.ts / code.js to implement the behavior of the Routes is located in the following directory:

  • src/product/[id]/code.ts | code.js

Middleware

The Middleware is an intermediary between the client request and the server request, and our system provides 2 methods for managing the Middleware:

Locks the specified Route for the client.

return Middleware.Lock(route: string, msg: string);

Redirects the request to a new URL.

return Middleware.Redirect(url: string);

Start File

In the Workspace, you will find a file called index.js / index.ts , which will contain the function to start your server, called Start, which will have the following constructs based on the type of server you want to start:

Start Function intestation:

Start the Server.

  • port: Port to Host the Routes Server.
  • onListeningCallback: Callback when server start.
  • corsOptions: CORS options (optional).
  • httpsOptions: HTTPS Options (optional).
Start(port: number, onListeningCallback: () => void, corsOptions?: object, httpsOptions?: { key: string; cert: string; passphrase?: string; });

Example of HTTP Server for Start Function

Start(3000, () => {
  console.log("I am hosted in localhost on port 3000 (http://localhost:3000) ! You can change the port and various settings on the index file of this project!");
});

Example of HTTPS Server for Start Function

Start(3000, () => {
  console.log("I am hosted in localhost on port 3000 (http://localhost:3000) ! You can change the port and various settings on the index file of this project!");
}, null, { key: "your dir for file .key", cert: "your dir for file .crt" });

Now let's describe other functions available for the Start File :

Limiter Function intestation

Set a rate limit for your routes.

  • maxReq: Maximum requests per time.
  • time: Timee in seconds.
  • message: Message if ratelimit is triggered.
  • route: Route to rate limit.
Limiter(maxReq: number, time: number, message: string, route?: string);

Example of Limiter for all Routes

Limiter(5, 2*1000, "Rate Limit for all Routes.");

Example of Limiter for specific route

Limiter(5, 2*1000, "Rate Limit", "/specificRoute");

Use Function intestation

Equivalent of 'use' function on Express.

  • content: Content to use.
  • route: Route where the content is used on the express app (optional).
Use(content: any, route?: string);

Set Function intestation

Equivalent of 'set' function on Express.

  • setting: Setting to change
  • val: Value to write on the setting
Set(setting: string, val: any);

NOTE: You can use other Express functions/attributes by inserting the following code:

const { App } = require("fastforge");
const app = App();

app.all('/test', function (req, res, next) {
    console.log('test');
    next();
});

Include MySQL

To make queries on mysql, you must first include its connection, which is contained in the db.js / db.ts file. Use this code snippet to include it:

const { MySqlDir } = require("fastforge");
const mysqlConn = require(MySqlDir());

To perform MySQL queries or other operations, follow the mysql2 library documentation.

Structure of code.js / code.ts File

The code file represents the code of your Route, and you can provide the response to different methods, such as GET, POST, PUT etc...

On FastForgeJS, the management of these HTTP methods is done in the following way:

Note: the req and res parameters are the same as in Express.

JavaScript

function GetMethod(req, res){
  res.send("This is a GET request");
}

function PostMethod(req, res){
  res.send("This is a POST request!");
}

function PutMethod(req, res){
  res.send("This is a PUT request");
}

function DeleteMethod(req, res){
  res.send("This is a DELETE request");
}

function PatchMethod(req, res){
  res.send("This is a PATCH request");
}

function HeadMethod(req, res){
  res.send("This is a HEAD request");
}

function OptionsMethod(req, res){
  res.send("This is an OPTIONS request");
}

module.exports = {
  Get: GetMethod,
  Post: PostMethod,
  Put: PutMethod,
  Delete: DeleteMethod,
  Patch: PatchMethod,
  Head: HeadMethod,
  Options: OptionsMethod
};

TypeScript

function GetMethod(req: any, res: any): void {
  res.send("This is a GET request");
}

function PostMethod(req: any, res: any): void {
  res.send("This is a POST request!");
}

function PutMethod(req: any, res: any): void {
  res.send("This is a PUT request");
}

function DeleteMethod(req: any, res: any): void {
  res.send("This is a DELETE request");
}

function PatchMethod(req: any, res: any): void {
  res.send("This is a PATCH request");
}

function HeadMethod(req: any, res: any): void {
  res.send("This is a HEAD request");
}

function OptionsMethod(req: any, res: any): void {
  res.send("This is an OPTIONS request");
}
  
module.exports = {
  Get: GetMethod,
  Post: PostMethod,
  Put: PutMethod,
  Delete: DeleteMethod,
  Patch: PatchMethod,
  Head: HeadMethod,
  Options: OptionsMethod
};

NOTE: You can use this other method to manage HTTP methods :

JavaScript

export function Get(req, res){
  res.send("This is a GET request");
}

export function Post(req, res){
  res.send("This is a POST request!");
}

export function Put(req, res){
  res.send("This is a PUT request");
}

export function Delete(req, res){
  res.send("This is a DELETE request");
}

export function Patch(req, res){
  res.send("This is a PATCH request");
}

export function Head(req, res){
  res.send("This is a HEAD request");
}

export function Options(req, res){
  res.send("This is an OPTIONS request");
}

TypeScript

export function Get(req: any, res: any): void {
  res.send("This is a GET request");
}

export function Post(req: any, res: any): void {
  res.send("This is a POST request!");
}

export function Put(req: any, res: any): void {
  res.send("This is a PUT request");
}

export function Delete(req: any, res: any): void {
  res.send("This is a DELETE request");
}

export function Patch(req: any, res: any): void {
  res.send("This is a PATCH request");
}

export function Head(req: any, res: any): void {
  res.send("This is a HEAD request");
}

export function Options(req: any, res: any): void {
  res.send("This is an OPTIONS request");
}

Authors

Anyone can contribute to the project by making a Pull Request !