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 🙏

© 2026 – Pkg Stats / Ryan Hefner

js2cleanly

v0.1.6

Published

js to js-cleanly

Readme

js2cleanly

Descripción

Pasa un fichero .js a .js-cleanly(sintaxis definida a continuación):

Uso
npm install js2cleanly

var fs = require('fs'); var file = 'file.js'; fs.readFile(file, 'utf-8', function(err, dataFile) { var jsCleanly = require('js2cleanly'); var dataNew = jsCleanly(dataFile);

fs.writeFile(file + '-cleanly', dataNew);

});


##### No se declaran variables ni es necesario ; para acabar la sentencia #####

```javascript
var numero = 5;
numero = 5
Los parámetros de una función no necesitan , para separarse.
Ni en bucles ni en funciones se necesitan {}, se anida por tabulación

js

function alumno(nombre, apellidos) {
	var nombreCompleto = nombre + ' ' + apellidos;

	return;
}

js-cleanly

function alumno(nombre apellidos)
	nombreCompleto = nombre + ' ' + apellidos
	
	return
Los bucles no necesitan los paréntesis de abertura y cierre

js

var num = 7;

if (num === 5) {
	console.log('Es 5');
} else if ((num > 5) && (num < 10)) {
	console.log('Está entre 5 y 10');
}

js-cleanly

num = 7

if num === 5
	console.log('Es 5')
else if (num > 5) && (num < 10)
	console.log('Está entre 5 y 10')
Los objetos no necesitan {} : , ni " en las propiedades salvo que sea compuesta, la anidación será por tabulación y si es un array de objetos estos se separan con ---

js

[
    {
        "_id": "53d32cdf0f981a34f88c77ba",
        "index": 0,
        "eyeColor": "blue",
        "tags": [
            "ad",
            "excepteur",
            "magna",
            "enim"
        ],
        "friends": [
            {
                "id": 0,
                "name": "Mcknight Mcintosh"
            },
            {
                "id": 1,
                "name": "Stokes Walters"
            },
            {
                "id": 2,
                "name": "Stout Blevins"
            }
        ],
        "greeting": "Hello, Deirdre Morrison! You have 5 unread messages.",
        "favoriteFruit": "apple"
    },
    {
        "_id": "53d32cdf8968e42ca9d82183",
        "index": 1,
        "age": 39,
        "eyeColor": "blue",
        "tags": [
            "non",
            "ea",
            "enim"
        ],
        "friends": [
            {
                "id": 0,
                "name": "Emerson Mcdonald"
            },
            {
                "id": 1,
                "name": "Julie Frazier"
            },
            {
                "id": 2,
                "name": "Patrica Mccray"
            }
        ],
        "greeting": "Hello, Baird Mcbride! You have 10 unread messages.",
        "favoriteFruit": "banana"
    }
]

js-cleanly

[
    _id "53d32cdf0f981a34f88c77ba"
    index 0
    eyeColor "blue"
    tags [
        "ad"
        "excepteur"
        "magna"
        "enim"
    ],
    friends [
        id 0
        name "Mcknight Mcintosh"
    	---
        id 1
        name "Stokes Walters"
    	---
        id 2
        name "Stout Blevins"
    ]
    greeting "Hello, Deirdre Morrison! You have 5 unread messages."
    favoriteFruit "apple"
	---
    _id "53d32cdf8968e42ca9d82183"
    index 1
    age 39
    eyeColor "blue"
    tags [
        "non"
        "ea"
        "enim"
    ]
    friends [
        id 0
        name "Emerson Mcdonald"
    	---
        id 1
        name "Julie Frazier"
    	---
        id 2,
        name "Patrica Mccray"
    ]
    greeting "Hello, Baird Mcbride! You have 10 unread messages."
    favoriteFruit "banana"
]

** Ejemplo de Javascript **

(function() {
	'use strict';
	app.provider('threeInRay', function() {
		var i,
		j,
		columns = [],
		row = {
			drawO: false,
			drawX: false,
			optionWin: false,
			text: ''
		},
		rows = [];
		for (i = 0; i < 3; i++) {
			for (j = 0; j < 3; j++) {
				rows.push(_.clone(row));
			}
			columns.push({
				rows: _.clone(rows)
			});
			rows = [];
		}
		var players = [{
				name: 'Player 1',
				optionWin: false,
				selectPlayer: false,
				tipo: 'X'
			}, {
				name: 'Player 2',
				optionWin: false,
				selectPlayer: false,
				tipo: 'O'
			}];
		this.$get = function() {
			return {
				columns: columns,
				players: players
			};
		};
	});
}());

** Ejemplo de Javascript-cleanly **

(function()
    'use strict'
    app.provider('threeInRay' function()
        columns = []
        row = 
            drawO false
            drawX false
            optionWin false
            text ''
        rows = []
        for i = 0; i < 3; i++
            for j = 0; j < 3; j++
                rows.push(_.clone(row))
            columns.push(
                rows _.clone(rows)
            )
            rows = []
        players = [
            name 'Player 1'
            optionWin false
            selectPlayer false
            tipo 'X'
        	---
            name 'Player 2'
            optionWin false
            selectPlayer false
            tipo 'O'
        ]
        this.$get = function()
            return
                columns columns
                players players
    )
())