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

control-js

v1.0.3

Published

a quick and dirty implementation of printf and sprintf

Downloads

4

Readme

Control

Control is an implementation of few of C printf functionality with extended features

Build Status

testing control-js

git clone https://github.com/zombieleet/control.git

cd control

npm install

export NODE_ENV="development" // linux and OSx

setx %NODE_ENV% development // windows

npm test

how to install

npm install --save control-js

usage

if you can work with c printf or the shell printf functionality, control will be easy

formaters

  1. %s "for strings"
  2. %d "for digits"
  3. %f "for floating point numbers"
  4. %u "for unsigned integers"
  5. %jn "for json data"
  6. %ob "for javascript objects"
  7. %bi "for binary numbers"
  8. %e or %E "for exponential numbers"
  9. %c "for printing single characters"
  10. %x or %X "for hexadecimal numbers"
  11. %ar "for arrays"

how to use formaters

    const { printf } = require('control-js');
    
    printf("my name is %s", "victory");
    printf("the first letter of my name is %c", "victory");

if the number of formters is not equal to the number of replacement strings , an error will be trhwon


    const { printf } = require('control-js');
    
    printf("the %s cost %d", "bacon");

working with field widths

fieldwidths is the number of space a replacement string should forgo


    const { printf } = require('control-js');

    printf("the %34s cost dollars %d", "bacon",100);

precisions, dataToPrint, number of characters to print

numbers

precision works for the flowing formaters

  1. %d
  2. %e
  3. %f
  4. %u

    const { printf } = require('control-js');    

    printf("%3.22d %.55u %.15e %.2f", 12, -1, 23, 24.56735);
    

data to print

  1. %jn
  2. %ob
  3. %ar

    const { printf } = require('control-js');
    
    const obj = {
        firstname:"victory",
        lastname: "osikwemhe",
        country: "nigeria",
        age: 21,
        hobbies: {
            sport: ["soccer","basketball"],
            singing: ["blues"],
            movies: ["action", "war", "horror", "scific"]
        },
        occupation: ["student"]
    };

    printf("%.4jn %.2ob %.3ar", JSON.stringify(obj),obj,["sleepy Hollow","The walking dead", "silicon valley", "vikings", "sense8"]);

number of characters to print

  1. %c
  2. %s
    
    const { printf } = require('control-js');
    
    printf("%.4c %.4s", "javascript", "node.js");
    

NOTE

if an invalid replacement string is specified for any formater, an error will be throwed

LICENSE

MIT

GNU ( either version 2 of the License, or at your option any later version. )