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

eon

v0.0.2

Published

Downloads

1

Readme

eon: EcmaScript Serialized Object Notation

eon is a format for storing information, that is like JSON in every way, except that it supports comments.

It was created because people use JSON for human-edited configuration files, and human-edited configuration files should support comments.

The format is the same as JSON's, according to the JSON specification, except that single line (// comment) and multiline (/* comment */) comments, as specified by the EcmaScript specification, are ignored.

This node.js package includes a parser based on Zach Carter's JSON parser in his JSON Lint module, which uses jison. jison is needed to build the the parser but not at runtime.

Usage

Command Line

To convert a file from eon to json, run:

eon package.eon

This will write package.json (overwriting it if it exists).

Programmatic

require('./eon')('{/* hi */"x":3}')

FAQ

You're changing JSON! JSON was never supposed to change!

No I'm not. I don't condone using the .json extension or the application/json content type. Instead use .eon and application/eon. This isn't a JSON dialect. This accepts a superset of JSON.

Why not add support for single quoted strings, or unquoted object keys?

I like the simplicity of JSON. I don't even mind that JSON disallows comments, when it is being used purely as a serialization format. The addition of comments is all I need to make JSON palatable for configuration files.

Why not just use YAML?

JSON, and eon, are more lightweight, and more people understand JSON than YAML.

Why support both comment syntaxes, when JSON only supports one style of string quotes?

I prefer to use the single-line comment syntax most of the time, but sometimes JSON is restricted to one object per line, in log files. This might happen with eon, too. If there is one object per line, the multiline syntax might be handy for commenting part of a complex expresssion.

What about other languages?

They're on the way! But in the meantime you can use the node.js command-line utility to convert to JSON first.

Status

Initial version implemented.

Thanks

Thank you:

  • Douglas Crockford for creating JSON
  • Kyle Simpson for passionately arguing for comment support
  • Aseem Kishore for creating json5, which inspired me to start working on this problem again
  • Zack Carter for creating jison and jsonlint

Copyright

Copyright 2012 Ben Atkin. Released under the terms of the MIT License.

Copyright 2012 Zach Carter. Released under the terms of the MIT License.