JSPM

  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q85983F
  • License MIT

Integration of the library jwks-rsa with FoalTS

Package Exports

  • @foal/jwks-rsa

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@foal/jwks-rsa) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Logo

A Web framework to create enterprise-grade Node.JS applications

License: MIT node version npm version Build Status Known Vulnerabilities Commit activity Last commit 2FA 2FA

Github - Twitter - Website - Documentation - YouTube

FoalTS is a Node.js framework for building HTTP APIs and Web applications with a rich interface (Angular / React / Vue). It is written in TypeScript and offers many built-in dev tools and components to handle extremely common scenarios. Simple, testable and progressive, Foal accelerates development while leaving you in control of your code.

Get started

First install Node.Js and npm.

Create a new app

$ npm install -g @foal/cli
$ foal createapp my-app
$ cd my-app
$ npm run develop

The development server is started! Go to http://localhost:3001 and find our welcoming page!

=> Continue with the tutorial

Why?

In recent years Node.js has become one of the most popular servers on the web. And for good reason, it is fast, simple while being powerful and flexible. Creating a server with only a few lines of code has never been easier.

But when it comes to setting up a complete and scalable project, things get harder. You have to put everything in place. The authorization system, database migrations, development tools or even hashing of passwords are just the tip of the iceberg. Working on this is time consuming and may slow down the release frequency or even lead to undesired bugs. As the codebase grows up and the complexity increases, it becomes harder and harder to develop new features and maintain the app.

This is where FoalTS comes in. Based on express, this lightweight framework provides everything needed to create enterprise-grade applications. From the support of TypeScript to the integration of security tools, it offers the basic bricks to build robust webapps. But FoalTS does not pretend to be a closed framework. You can still import and use your favorite librairies from the rich ecosystem of Node.js.