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

auto-format

v1.1.1

Published

A javascript auto-formatting library for code snippets.

Downloads

110

Readme

auto-format

Build Status Coverage Status npm Document

An easy to use, light-weight library to auto-format code in javascript. Works well with code highlighting libraries to display beautiful, uniformly formatted code.

As of right now only Java can be formatted properly, although you will probably get decent results with any language that uses brackets as scope delimiters. Further more the library is very extensible, in fact you only have to implement 5 methods to add support for another language. Please see contribute if you would like to contribute. Help is always welcome!

Examples

format method:

You can also check out https://exemplator.xyz where all code samples are formatted with this library.

Live example of format method.

Install

Run npm install auto-format --save

Usage

As of right now, only Java is fully supported.

ES6:

import Formatter from "auto-format"

Vanilla JS:

var Formatter = require('auto-format');

Simple example: format

var indentToken = "   ";
var unformattedCode = "code to format";

var javaFormatter = Formatter.createJavaFormatter(indentToken);
var formattedCode = javaFormatter.format(unformattedCode);

Format a string of code. The string will be cut into lines and lines will be indented accordingly to their scope.

-- Parameters:

indentToken : The token used to indent lines (e.g. 2 or 4 spaces).

unformattedCode : A string of unformatted code (including line breaks).

-- Return:

formattedCode : An array lines of code. All lines will have been correctly indented according to their scope.


Complex example: formatSnippet

var indentToken = "   ";
var javaFormatter = Formatter.createJavaFormatter(indentToken);

var unformattedCode = "code to format";
var selectionStartRow = 11;
var selectionEndRow = 11;
var snippetOffset = 6;

var formattedCode = javaFormatter.formatSnippet(unformattedCode, selectionStartRow, 
    selectionEndRow, snippetOffset);

A slight variation of format(codeString). Useful if you want to display a code snippet around a selection of lines like here.

In addition to indenting lines, formatSnippet takes a selection and an offset.

The selection consists of one or several lines which should be "highlighted" in the code. For example the line that you would like to show off. The offset defines the number of lines above and below the selection.

The start and end of the snippet is calculated from the selection start, end and the offset. formatSnippet intelligently cuts the snippet out of the original codebase. 'Intelligently' means the method always tries to cut out only the method out of the selection. If the method is too big, only a part of the method will be cut out, but lines outside this method (i.e. other methods etc.) are cut away unless they comment that method.

-- Parameters:

indentToken : The token used to indent lines (e.g. 2 or 4 spaces).

unformattedCode : A string of unformatted code (including line breaks).

selectionStartRow : The start row of the selection in the code base.

selectionEndRow : The end row of the selection in the code base.

snippetOffset : The number of lines above and below the selection.

-- Example:
Selection start row: 11
Selection end row: 11
Offset: 6 
------------------------------
Snippet start row: 11 - 6 = 5
Snippet end row: 11 + 6 = 17
-- Return:

formattedCode : An array in the form of

[code string above selection, code string of selection, code string below selection,
[new start line of snippet in original file, new end line of snippet in original file]]

For more details and examples see the documentation.

Contribute

Pull requests are always welcome. To add support for a new language, look at the JavaFormatter.

The documentation is here.