Skip to content
This repository was archived by the owner on Mar 11, 2024. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

147 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@snowcrystals/highway

Building API routes has never been easier 🛣️

Version License: MIT


Information

Create routes and middleware using classes and a filepath based routing system like Next.js.

Install

yarn add @snowcrystals/highway express
npm install @snowcrystals/highway express

Documentation

The documentation (API Reference) can be found on our website

Examples

The following examples are written in TypeScript with decorators enabled. The examples do not show the required imports (because the only imports you will need are @snowcrystals/highway components).

For a non-decorator version, use a constructor and move the options to the super function inside the constructor (example below)

class HelloWorldRoute extends Route {
	constructor() {
		super(options); // <-- Options are the options from the decorator, they are all optional
	}
}

Route Example

@ApplyOptions<Route.Options>({
	middleware: [[Methods.GET, "log"]]
})
class HelloWorldRoute extends Route {
	public [Methods.GET](req: Request, res: Response) {
		res.send("Hello World");
	}
}

Middleware Example

@ApplyOptions<Middleware.Options>({
	name: "log"
})
class LogMiddleware extends Middleware {
	public [Methods.GET](req: Request, res: Response, next: NextFunction) {
		console.log("Hello world route");
		next();
	}
}

Author

👤 ijsKoud

Donate

This will always be open source project, even if I don't receive donations. But there are still people out there that want to donate, so if you do here is the link PayPal or to Ko-Fi. Thanks in advance! I really appriciate it <3

License

Project is licensed under the © MIT License


About

Building API routes has never been easier 🛣️

Resources

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages

Generated from snowcrystals/template