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

@static-pages/file-reader

v4.0.0

Published

Generic file reader implementation for @static-pages/core.

Downloads

6

Readme

Static Pages / File reader

Reads the contents of every file where the file name matches the given pattern. Produces an iterable.

Usage

import reader from '@static-pages/file-reader';

const iterable = reader({
  cwd: '.',
  pattern: '**',
  ignore: 'ignored-file*',
  encoding: 'utf-8',
  incremental: {
    file: '.incremental',
    key: '.:**',
    strategy: 'time',
    triggersTrackingRoot: '.',
    triggers: [
      ['news/*', 'news.main'], // if 'news/*' changes, read 'news.main' too
      ['posts/*', 'posts/*'], // if anything in 'posts' changes, read everything
    ],
  },
});

// one item in the iterable:
// {
//   header: {
//     cwd: '/path/to/pages',
//     path: 'folder/file.md',
//     dirname: 'folder',
//     basename: 'file',
//     extname: '.md'
//   },
//   body: '[file contents]'
// }

Docs

reader(options: Options): Iterable<Data>

Options

  • options.cwd (default: .) sets the current working directory.
  • options.pattern (default: **) glob pattern(s) that selects the files to read. Can be a string or a string array.
  • options.ignore (default: undefined) glob pattern(s) that selects the files to ignore. Can be a string or a string array.
  • options.encoding (default: utf-8) defines the returned file encoding. Possible values are the same as the encoding argument of fs.readFile.
  • options.incremental (default: false) return only those files that are newer than the previous iteration. Read more about incremental reads below.

Data

  • data.header contains metadata about the file.
    • header.cwd is the absolute path of the cwd set in the options.
    • header.path is the file path relative to the header.cwd.
    • header.dirname is equivalent to path.dirname(header.path).
    • header.basename is equivalent to path.basename(header.path, header.extname).
    • header.extname is equivalent to path.extname(header.path).
  • data.body contains the contents read from the source file.

Windows style backslashes are always normalized to Unix style forward slashed in paths.

Incremental reads

It means that if a file content is already read it won't be read again on the next iteration unless it has modifications.

Set options.incremental to true or pass an object containing specific options to enable incremental reads.

interface IncrementalOptions {
  file?: string;
  key?: string;
  strategy?: 'git' | 'time';
  triggers?: [string, string][] | ((changes: string[]) => string[]);
  triggersTrackingRoot?: string;
}

Modifications detected either by file modification time (the mtime field) or by git changes since a given commmit. By default we use the file modification time strategy. To change this to the git strategy, set options.incremental.strategy to git.

Last read state is preserved in a .incremental file in the current working directory. You can redirect this output to a different file by setting the options.incremental.file to eg. readstate.json. Multiple readers can share a single .inremental file.

If there are multiple file readers with the same cwd and pattern, they will collide with each if incremental is enabled. This is beacause the current state of an incremental read is cached with a key generated from the cwd and the pattern. Set options.incremental.key to some unique for each of the readers.

You can define file relations like: if 'A' file is modified 'B' file also needs to be read. These rules can be defined with options.incremental.triggers which accepts a 2d array or a function recieving the changes and returning file patterns that also needs to be read. Changes are only tracked in the options.incremental.triggersTrackingRoot directory which defaults to the options.cwd. Outside this directory no changes are considered even with git strategy where git easily can report changes in the parent directories. Changes are always provided with relative path to options.cwd.

Tip: Add a .incremental rule to your .gitignore file if you are using version control.

Tip: In CI environments don't forget to cache the .incremental file.

Where to use this?

This module can be used to generate static HTML pages from file based sources. Read more at the Static Pages JS project page.