Socket
Socket
Sign inDemoInstall

printf

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

printf

Full implementation of the `printf` family in pure JS.


Version published
Weekly downloads
230K
decreased by-8.02%
Maintainers
1
Weekly downloads
 
Created

What is printf?

The printf npm package is a JavaScript implementation of the C-style printf function, which allows for formatted string output. It supports various format specifiers and can be used to format strings, numbers, and other data types in a structured way.

What are printf's main functionalities?

String Formatting

This feature allows you to format strings by embedding format specifiers within the string. In this example, '%s' is replaced by the string 'world'.

const printf = require('printf');
console.log(printf('Hello, %s!', 'world'));

Number Formatting

This feature allows you to format numbers. In this example, '%d' is replaced by the number 42.

const printf = require('printf');
console.log(printf('The number is: %d', 42));

Floating Point Formatting

This feature allows you to format floating-point numbers to a specified precision. In this example, '%.2f' formats the number 3.14159 to two decimal places.

const printf = require('printf');
console.log(printf('Pi is approximately %.2f', 3.14159));

Hexadecimal Formatting

This feature allows you to format numbers as hexadecimal. In this example, '%x' formats the number 255 as 'ff'.

const printf = require('printf');
console.log(printf('Hexadecimal: %x', 255));

Other packages similar to printf

Keywords

FAQs

Package last updated on 03 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc