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 🙏

© 2024 – Pkg Stats / Ryan Hefner

page-compiler

v0.1.18

Published

This is a very simple, yet powerful and intuitive TypeScript framework and a collection of tools that makes web(app) development simple. PageCompiler does what you might expect: it compiles pages. With it, you can dynamically create static websites. PageC

Downloads

96

Readme

PageCompiler

This is a very simple, yet powerful and intuitive TypeScript framework and a collection of tools that makes web(app) development simple. PageCompiler does what you might expect: it compiles pages. With it, you can dynamically create static websites. PageCompiler's main purpose is performance: the compiled pages are supposed to be as fast as possible. You can expect near 100% Google Lighthouse scores on well formed pages, even with images. The most powerful feature of PageCompiler is the ability to interpolate JavaScript/TypeScript in your HTML files. This code will be executed at compile time. PageCompiler's built-in tools take advantage of this.

Try it out!

You can create an example project structure as follows:

$ npm i page-compiler
$ node node_modules/page-compiler/create-app --sass

This will create an empty page-compiler template app with SASS support. I would recommend installing a JS HTML template string extension like this one for VSCode for best development experience.

Open the compiler.ts file that has been created in the root directory. You will see that the compilePages() function is called with an array of pages as its argument. The HTML of a sample page can be placed here inside an html string. You can obviously also put the html strings in a seperate files. You don't have to write an entire HTML shell, as that would be very dull. The PageShell tool does that for you.

The main SASS file for our page shell is located at src/sass/index.sass. The main client-side TS file is located at src/js/index.ts.

You need to compile the TypeScript files before you can use import them into the compiler. Simply keep a terminal window open and execute $ tsc. The TypeScript Configuration file is already set up, so no need to worry about it.

You can import other JS, SASS and CSS files with the inline tools.

When your webapp is ready to be tested, compile the pages with $ node compiler. The pages will be compiled into the root directory. Use your favourite webserver and set the webroot to this directory to host your website.

Tools reference

Importing images

This is the main reason I created PageCompiler. Images of all kinds (JPG, PNG, SVG, etc.) are a very important part of any modern website. But in plain HTML/CSS/JS, it is really hard to dynamically optimise the imagery on your website.

PageCompiler offers straightforward solutions to loading images into your webapps.

Importing raster images

You can import JPGs, PNGs and other raster images with the importJPG() tool. This tool compresses and converts the input images into different sizes and formats. The importJPG() tool creates images in JPG and WEBP formats. A <picture> HTML element is returned containing the source sets of the created images. This tool takes care of all browser compatibility, so you can simply import an image with a single line of code. You need to have imagemagick installed on your system in order to use this tool.

Example:

import { importJPG } from 'page-compiler'

/* html */ `
<div id="my-app">
	${ importJPG('src/img/bear.png', { alt: 'An image of a bear' }) }
</div>
`

This code will get compiled into an HTML structure like this:

<div id="my-app">
	<picture>
		<source .../>
		...
		<img src="..."/>
	</picture>
</div>

Inlining SVGs

SVG images can be directly inlined within the HTML pages of your webapp. This reduces the request count and server load.

Example:

import { inlineSVG } from 'page-compiler'

/* html */ `
<div id="my-app">
	${ inlineSVG('src/img/twitter-icon.svg', { classes: [ 'social-icon' ] }) }
</div>
`

This code will get compiled into an HTML structure like this:

<div id="my-app">
	<svg class="social-icon">...</svg>
</div>

Importing Web Fonts

You can easily import fonts from Google Fonts with the importGoogleFont() tool.

Example:

import { importGoogleFont } from 'page-compiler'

const pageShell = new PageShell({
	head: /* html */ `
	${ await importGoogleFont('Roboto', [
		{ weight: 300, italic: true },
		{ weight: 500 }
	]) }
	`
})

You can use the font in CSS/SASS files:

.selector {
	font-family: 'Roboto', sans-serif;
	font-size: 500;
}

Inlining code

JS, CSS and SASS scripts can be directly inlined within the HTML pages of your webapp. This reduces the request count and server load. CSS and SASS scripts are auto-prefixed, and can be controlled by a .browserslistrc file.

Example:

import { inlineJS, inlineSASS, inlineExternalJS, inlineExternalCSS } from 'page-compiler'

/* html */ `
${ await inlineJS('src/js/contact-page.js') }
${ await inlineSASS('src/sass/contact-page.sass') }

${ await inlineExternalJS('https://some-cdn.com/some-contact-form-library.js') }
${ await inlineExternalCSS('https://some-cdn.com/some-contact-form-library.css') }

<div id="contact">
	...
</div>
`

This code will get compiled into an HTML structure like this:

<script> ... </script>
<style> ... </style>

<script> ... </script>
<style> ... </style>

<div id="contact">
	...
</div>

Progressive Web Apps (PWA)

PageCompiler also has tools to make creating PWAs much easier. You can create a project structure for a PWA with SASS support with the following command:

$ node node_modules/page-compiler/create-app --sass --pwa

In the compiler.ts you will see the createPWAManifest() tool being used. You can change and add fields of the manifest.

This command also creates a sample service worker file src/js/service-worker.js which handles caching. It is imported using the importServiceWorker() tool in compiler.ts.