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

alce

v1.2.0

Published

Accepting Language Config Environment

Downloads

1,046,808

Readme

ALCE

Accepting Language Config Environment - "Alice"

Human friendly, machine editable, JSON-like config file format. Takes the JSON out of humans' nightmares.

Extends JSON to allow for:

  • Comments
  • Regular expressions
  • Relaxed identifier and syntax handling

Example

{
  // Section 1. Global config
  content: "foo",

  // Section 2. Environment config
  // WARN: A meaningful here be dragons comment
  otherContent: [
    // Note that trailing spaces and single quotes don't cause mass chaos
    'see!',
  ]
}

Usage

npm install --save alce
var ALCE = require('alce');

var config = ALCE.parse(configSource, {meta: true});
config.set('key', 'new value');
config.toString();
config.toObject();

API

ALCE.parse(configSource, options)

Parses a string containing a ACLE source file. Returns an ACLE object.

  • configSource: String representation of the configuration file
  • options: Options hash.
    • meta : Set to truthy to return an editable version of the config that may be reconstructed. Falsy returns generic javascript object. See #toObject.
    • Formatter options. See Formatters for more info

ALCE.stringify(object, options)

Converts a ACLE or javascript object to it's string representation.

  • object: Object to convert to a string
  • options: Formatter options when converting a javascript object. See Formatters for more info.

Metadata Objects

#get(id)

Returns the ACLE or primitive value stored on the object under a given key. undefined if no key exists.

#set(id, value)

Sets value to id converting to an ACLE object as necessary. If replacing an existing value, the formatting of that value will be maintained. If creating a new value, or child values, will use the rules defined in the options formatters.

#remove(id)

Removes the key specified by id.

Array-like methods

ACLE instances representing arrays additionally implement:

  • length
  • push
  • pop
  • unshift
  • shift
  • splice

All of which behave as they would if operating on an normal array.

#toString()

Returns the current config node contents in as close to the user's input format as possible.

#toObject()

Returns a generic javascript object with all config values stripped of any metadata. Useful for passing to other APIs or when metadata is not necessary.

Formatters

Formatters control how newly created nodes are rendering. The may modify the preamble, prologue, and if applicable innerPrologue, fields on the new objects to control the formatting around the new object.

#seedIndent(parent, object)

Called for both parsed and new objects, allowing for the formatter to determine any state information necessary.

  seedIndent: function(parent, object) {
    if (parent) {
      object.indent = exports.calcIndent(parent.preamble || '') + (parent.isArray ? '  ' : '');
    } else {
      object.indent = '';
    }
  },

#objectFormatter(parent, object)

Called when a new object or array is created. Generally parent will be an array instance or a property. The isArray field may be used to determine if parent or object is an array.

  objectFormatter: function(parent, object) {
    object.innerPrologue = '\n' + object.indent;
  },

#insertFormatter(parent, insert)

Called when a new value is inserted into an array or object instance. insert will be pushed to the end of the parent.children list after this operation occurs.

  insertFormatter: function(parent, insert) {
    var indent = parent.indent || ALCE.calcIndent(parent.preamble);
    insert.preamble = (parent.children.length ? ',' : '') + '\n  ' + indent;
  },

#propertyFormatter(parent, property)

Called when a new property is created. This is useful for defining the separator value for a property.

  propertyFormatter: function(parent, property) {
    property.separator = ': ';
  }

ALCE.TWO_SPACE_FORMATTER

Formatter options that output two space indented data structures with trailing commas. May be passed directly into the options parameter for both parse and serialize.

ALCE.calcIndent(preamble)

Utilitity method for formatters. Determines the indentation that should be used for a node relative to a given prefix. This is helpful for the inserFormatter to determine where to align new children inserted into an object.

Bitdeli Badge