You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@static-pages/core

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@static-pages/core

General purpose static pages renderer.


Version published
Weekly downloads
27
increased by145.45%
Maintainers
0
Created
Weekly downloads
 

Readme

Source

Static Pages / Core

Build Status Coverage Status npms.io (quality) Maintenance

Yet another static pages generator? Yes! Because I browsed the whole jamstack scene, but could not find one which

  1. can read input from any source (YAML, JSON, front-matter style markdowns, database etc.)
  2. can render with any template engine (Twig, ejs, Pug, Mustache etc.)
  3. written in JS (preferably TypeScript)
  4. easy to extend with JS code
  5. supports incremental builds
  6. uses MVC pattern
  7. learning and using is easy (Gatsby, Hugo, Jekyll, Eleventy etc. are so cool but harder to learn and configure)

And because I wrote a ton of custom static generators before; I tought I can improve the concepts to a point where its (hopefully) useful for others.

This project is structured as a toolkit split to many packages, published under the @static-pages namespace on NPM. In most cases you should not use this core package directly, but the @static-pages/starter is a good point to begin with.

Where should I use this?

This project targets small and medium sized websites. The rendering process tries to be as fast as possible so its also useful when you need performance.

Usage

import fs from 'node:fs';
import path from 'node:path';
import staticPages from '@static-pages/core';

staticPages({
    from: [
        { title: 'About', url: 'about', content: 'About us content' },
        { title: 'Privacy', url: 'privacy', content: 'Privacy content' },
    ],
    controller(data) {
        data.now = new Date().toJSON();
        return data;
    },
    to({ title, url, content, now }) {
        const fileName = path.join('public', url + '.html');
        const fileContent = `<html><body><h1>${title}</h1><p>${content}</p><p>generated: ${now}</p></body></html>`;
        fs.mkdirSync(path.dirname(fileName), { recursive: true });
        fs.writeFileSync(fileName, fileContent);
    }
})
.catch(error => {
    console.error('Error:', error);
    console.error(error.stack);
});

Notes

The usage example above does a rough presentation only and not considered to be a production ready snippet. Helpers to read and write documents are provided in separate packages, eg. @static-pages/io.

Documentation

For detailed information, visit the project page.

staticPages(...routes: Route[]): Promise<void>

Each route consists of a from, to and a controller property matching the definition below.

interface Route<F, T> {
    from: Iterable<F> | AsyncIterable<F>;
    to(data: T): void | Promise<void>;
    controller?(data: F): undefined | T | Iterable<T> | AsyncIterable<T> | Promise<undefined | T | Iterable<T> | AsyncIterable<T>>;
}

The controller may return with multiple documents, each will be rendered as a separate page. Alternatively it may return undefined to prevent the rendering of the current document.

Missing a feature?

Create an issue describing your needs! If it fits the scope of the project I will implement it.

Keywords

FAQs

Package last updated on 29 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc