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

@sc3d/nancy

v7.3.1

Published

Simple templating system

Downloads

4

Readme

Nancy

logo logo by Silvia Polverini

$paste{/bin/sh,-c,./bin/run.js --version | tail +2 | head -2 | sed -e 's/$/ /'}

Nancy is a simple macro processor that copies a file or directory, filling in templates as it goes. It has just one non-trivial construct: context-dependent file inclusion. A file can either be included literally, or run as a command and its output included.

Nancy was originally designed to build simple static web sites, but can be used for all sorts of other tasks, similar to more complicated systems like AutoGen and TXR.

Nancy is free software, licensed under the GNU GPL version 3 (or, at your option, any later version), and written in TypeScript.

See the Cookbook for examples.

Please send questions, comments, and bug reports to the maintainer, or report them on the project’s web page (see above for addresses).

Installation

Install Nancy with npm (part of Node):

$ npm install -g @sc3d/nancy

Invocation

$paste{/bin/sh,-c,./bin/run.js --help | sed -e 's/usage: run.js/nancy/'}

Operation

Nancy starts by combining the list of inputs given as its input path. If the same file or directory exists in more than one of the directories on the input path, the left-most takes precedence. The result is called the “input tree”, and all paths are relative to it.

Next, Nancy traverses the input tree, or the tree given by the --path argument, if any, which is either a relative path denoting a subtree of the input tree, or an absolute path.

As a special case, if the input path is a single file, and no --path argument is given, then Nancy acts as if the input path were the current directory and the --path argument were the file name. This makes it convenient to expand a single file using the command:

nancy INPUT-FILE OUTPUT-FILE

For each directory in the input tree, Nancy creates a corresponding directory, if it does not already exist.

For each file, Nancy looks at its name, and:

  • If the name contains the suffix .nancy, the file’s contents is expanded (see below), and the result is then written to a file of the same name, but with .nancy removed, in the corresponding place in the output directory.
  • Else, if the name contains the suffix .in, the file is skipped. (It may be used by macros in other files.)
  • Otherwise, the file is copied verbatim to the corresponding place in the output.

Files and directories in the output have the same name as in the input tree, except for the root directory (or file), which is called OUTPUT.

The special suffixes need not end the file name; they can be used as infixes before the file type suffix.

Template expansion

Nancy expands a template file as follows:

  1. Scan the text for commands. Expand any arguments to the command, run each command, and replace the command by the result, eliding any final newline. (This elision may look tricky, but it almost always does what you want, and makes \$include behave better in various contexts.)
  2. Output the resultant text.

A command takes the form \$COMMAND or \$COMMAND{ARGUMENT, ...}.

Built-in commands

Nancy recognises these commands:

  • \$include{FILE} Look up the given source file in the input tree (see below); read its contents, then expand them (that is, execute any commands it contains) and return the result.
  • \$paste{FILE} Like \$include, but does not expand its result before returning it.
  • \$path Expands to the file currently being expanded, relative to the input tree.
  • \$realpath Expands to the real path of the file currently being expanded.

The last two commands are mostly useful as arguments to external programs (see below).

To find the file specified by a \$include{FILE} command, Nancy proceeds thus:

  1. Set path to the value of \$path.
  2. See whether path/FILE is a file (or a symbolic link to a file). If so, return the file path, unless we are already in the middle of expanding this file.
  3. If path is empty, stop. Otherwise, remove the last directory from path and go to step 2.

If no file is found, Nancy stops with an error message.

For example, if Nancy is trying to find file.html, starting in the subdirectory foo/bar/baz, it will try the following files, in order:

  1. foo/bar/baz/file.html
  2. foo/bar/file.html
  3. foo/file.html
  4. file.html

See the website example in the Cookbook for a worked example.

Running other programs

In addition to the rules given above, Nancy also allows \$include and \$paste to take their input from programs. This can be useful in a variety of ways: to insert the current date or time, to make a calculation, or to convert a file to a different format.

Nancy can run a program in two ways:

  1. If a file found by an \$include or \$paste command has the “execute” permission, it is run.

  2. If no file of the given name can be found using the rules in the previous section, Nancy looks for an executable file on the user’s PATH (the list of directories specified by the PATH environment variable). If one is found, it is run.

In either case, arguments may be passed to the program: use \$include{FILE,ARGUMENT_1,ARGUMENT_2,…}, or the equivalent for \$paste.

For example, to insert the current date:

\$paste{date,+%Y-%m-%d}

See the date example in the Cookbook for more detail.

When commands that run programs are nested inside each other, the order in which they are run may matter. Nancy only guarantees that if one command is nested inside another, the inner command will be processed first.

Escaping

To prevent a comma from being interpreted as an argument separator, put a backslash in front of it:

\$include{cat,I\, Robot.txt,3 Rules of Robotics.txt}

This will run the \$include command with the following arguments:

  1. cat
  2. I, Robot.txt
  3. 3 Rules of Robotics.txt

Note that the filenames supplied to cat refer not to the input tree, but to the file system.

Similarly, a command can be treated as literal text by putting a backslash in front of it:

Now I can talk about \\$paste.

This will output:

Now I can talk about \$paste.

Development

Check out the git repository and download dependencies with:

git clone https://github.com/rrthomas/nancy
npm install

To run the tests:

npm test