Minor fixes

This commit is contained in:
sigma-andex 2022-08-25 12:16:36 +01:00
parent b0106b6149
commit 02d135ef74
No known key found for this signature in database
GPG Key ID: C5F79968835855AB
3 changed files with 6 additions and 3 deletions

View File

@ -41,6 +41,6 @@ jobs:
- name: Verify Bower & Pulp
if: ${{ github.ref == 'refs/heads/main' }}
run: |
npm install bower pulp@16.0.0
npm install bower pulp@16.0.1
npx bower install
npx pulp build -- --censor-lib --strict

View File

@ -3,9 +3,11 @@
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/sigma-andex/purescript-httpurple/main/License)
[![purescript-httpurple on Pursuit](https://pursuit.purescript.org/packages/purescript-httpurple/badge)](https://pursuit.purescript.org/packages/purescript-httpurple)
A functional http framework with a focus on type-safety and making the common case easy.
A functional http server with a focus on type-safety and making the common case easy.
This project was originally forked from the amazing [HTTPure](https://github.com/citizennet/purescript-httpure) http server framework, but has since deviated quite a bit. If you are coming from HTTPure you might want to have a look at the [differences to HTTPure](./docs/Differences.md).
**Note:** If you are looking for a http client, check out [`purescript-fetch`](https://github.com/rowtype-yoga/purescript-fetch)
**Note**: This project was originally forked from the amazing [HTTPure](https://github.com/citizennet/purescript-httpure) http server framework, but has since deviated quite a bit. If you are coming from HTTPure you might want to have a look at the [differences to HTTPure](./docs/Differences.md).
## ToC
1. [Features](#features)

View File

@ -4,6 +4,7 @@ HTTPurple 🪁 is a fork of [HTTPure](https://github.com/citizennet/purescript-h
If you have used HTTPure before, you'll probably want to go through the following changes to get started using HTTPurple 🪁:
* [routing-duplex](#routing-duplex)
* [Extensible requests and node middlewares](#extensible-requests-and-node-middlewares)
* [startup options](#startup-options)
* [request parsing and validation](#request-parsing-and-validation)
* [other improvements](#other-improvmenets)