Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

SUI-Components/minimal-css-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Extract CSS

Get all the CSS from a webpage.

Platform: Now V2

The problem

The folks from CSS Stats have created get-css, a package to get all the CSS from a given webpage. One downside, however, is that it only works for server side rendered applications.

The solution

This package uses an actual browser under the hood to get all the CSS and exposes an HTTP endpoint that accepts a url to get the CSS from.

Local testing

I have no idea how local testing for Now is supposed to work, so I created a tiny HTTP server in dev.js that calls the actual function that gets deployed. Run npm run dev to run a local version of the function for local testing.

Optional headers to the destination URL

You can optionally add all the custom HTTP headers you want to this service request by attaching them in a encoded query string named extraHeaders, that way your destination URL request will have also such headers. See the following example:

https://get-critical-css-service.vercel.app/m?extraHeaders=%7B%22X-Custom-Token%22%3A%22123456%22%7D

Deployment

Using Now: now.

Credits