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

super-sources

v1.1.1

Published

Beautiful error printing for any source code

Downloads

95

Readme

super-sources test

This package contains classes for representing pieces of source code, and allows you to print beautiful errors/warnings that display the referenced pieces of source code. Unicode is supported, including the Supplementary Multilingual Plane. Windows line terminators (\r\n) are also supported.

Installation

npm install super-sources

Requires Node.js v14.x.x or later.

Usage

const { File, SourceError } = require('super-sources');

const file = new File('example.txt', 'this is a simple file.\nhello worl!\n');
const source = file.at(29, 4); // offset 29, length 4

const error = SourceError.build()
	.error('Misspelling detected')
	.source(source, 'here')
	.note('expected: "world"')
	.note(`received: "${source.string()}"`)
	.done();

assert(error instanceof Error);
assert(error instanceof SourceError);

console.log(error.print({ colors: false }));

Result:

Error: Misspelling detected
 --> example.txt
  |
2 |   hello worl!
  |         ^^^^
  * expected: "world"
  * received: "worl"

API

new File(filename, content)

An object that represents a source file.

const fs = require('fs');

const filename = 'example.txt';
const content = fs.readFileSync(filename, 'utf8');

const file = new File(filename, content);

file.at(offset, [length]) -> Source

Creates a Source object, which represents a slice of the source file. If length is not provided, it defaults to 1.

const source = file.at(0);

file.lineNumberAt(offset) -> number

Returns the line number at the given offset. The first line is 1.

const lineNumber = file.lineNumberAt(0);

assert(lineNumber === 1);

File properties

  • file.filename: The filename that was passed to the File constructor.
  • file.content: The content string that was passed to the File constructor.

new Source(file, start, end)

An object that represents a slice of the given File, from offsets start (inclusive) to end (exclusive). The length of the slice (end - start) must be at least 1.

const fs = require('fs');

const filename = 'example.txt';
const content = fs.readFileSync(filename, 'utf8');

const file = new File(filename, content);
const source = new Source(file, 0, 1);

source.to(otherSource) -> Source

Creates a Source object that spans the range from this source to another source. A negative or zero-length range will result in a RangeError. Also, both sources must be from the same file.

const source1 = new Source(file, 0, 5);
const source2 = new Source(file, 3, 8);
const result = source1.to(source2);

assert(result.start === 0);
assert(result.end === 8);

source.string() -> string

Returns the original source string represented by this object.

const file = new File('example.txt', 'abcdefg');
const source = new Source(2, 4);

assert(source.string() === 'cd');

source.error(message, [helperText]) -> ErrorBuilder

Shorthand for SourceError.build().error(message).source(source, helperText). See the ErrorBuilder class for more details.

source.error('Invalid expression').throw();

source.warning(message, [helperText]) -> ErrorBuilder

Shorthand for SourceError.build().warning(message).source(source, helperText). See the ErrorBuilder class for more details.

console.warn(source.warning('Invalid expression').done().print());

Source properties

  • source.file: The File that this source came from.
  • source.start: The offset where this source slice starts (inclusive).
  • source.end: The offset where this source slice ends (exclusive).

class SourceError

A subclass of Error that can reference Source objects, and is capable of printing beautiful error messages containing the source code.

Instead of constructing them manually, you can use the static SourceError.build() method to conveniently create a new ErrorBuilder.

const error = SourceError.build()
	.error('Misspelling detected')
	.source(source, 'here')
	.note('expected: "world"')
	.note(`received: "${source.string()}"`)
	.done();

error.print([options]) -> string

Returns a string containing a beautifully formatted error message, containing any source code that this error references.

The following options are supported:

  • colors (boolean)
  • filenames (boolean)
    • Whether or not the output should contain the names of the referenced source files. Default: true.
  • lineNumbers (boolean)
    • Whether or not the output should contain the line numbers of the referenced source code. Default: true.
  • positions (boolean)
    • Whether or not the output should highlight the exact positions of the referenced source code. Default: true.
  • maxLines (number)
    • The maximum number of source lines to display (per source snippet) before lines are omitted to save space. Default: 7.

class ErrorBuilder

A convenient builder class for making customized SourceErrors.

builder.error(message) -> this

Adds an error message to the builder. Any number of error messages can be added.

builder.warning(message) -> this

Adds a warning message to the builder. Any number of warning messages can be added.

builder.source(source, [helperText]) -> this

Adds a Source object to the builder. Any number of sources can be added. The added source will be associated with the most recent .error() or .warning() that was added.

builder.note(message) -> this

Adds a note to the builder. Any number of notes can be added. The note will be associated with the most recent .source() that was added.

builder.done() -> SourceError

Returns a SourceError containing all errors, warnings, sources, and notes that were added to this builder.

builder.throw() -> throw

This is the same as builder.done(), but the resulting SourceError will be immediately thrown.

License

MIT