New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@puya/ts

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@puya/ts

This library provides timestamp and supports custom templates for its output file.

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
0
Created
Source

Timestamper

Timestamper is a Node.js library and CLI tool that provides timestamp functionality and supports custom templates for its output file. It allows you to easily add a timestamp to a JSON file or any other file format based on a template.

Features

  • Add Timestamp: Automatically add a timestamp to a specified output file.
  • Custom Templates: Use custom templates for the output file.
  • Locale Support: Supports different locales for timestamp formatting (e.g., en, fa).
  • CLI and Programmatic Use: Can be used as a command-line tool or imported as a module in your Node.js projects.

Installation

You can install Timestamper globally for CLI use or locally in your project.

Global Installation

Install globally to use the ts command:

npm install -g @puya/ts

Local Installation

Install locally in your project:

npm install @puya/ts

Usage

CLI

Once installed globally, you can use the ts command in your terminal.

ts [options]

Options

  • -l [locale]: The locale to use for formatting the date/time. Default is en.
  • -o [outputfile]: The name of the output file where the result will be saved. Default is info.json.
  • -t [template]: The path to a template file.
  • -f [format]: The format string to use for formatting the date/time. Default is YYYYMMDDHHmm.
  • -so: skip generating output file.
  • -i [inline-template]: Inline template string.

Examples

  • Add a timestamp using the default settings:

    ts
    
  • Add a timestamp to a custom output file with a specific format:

    ts -l en -o result.json -f YYYYMMDDHHmmss
    
  • Use a custom template file:

    ts -l fa -o result.json -t template.txt
    
  • Use an inline template:

    ts -l fa -o result.json -i "{ test: '{ts}' }"
    
  • Get help:

    ts --help
    

Programmatic Use

You can also use Timestamper as a module in your Node.js projects.

Example 1.

const { Timestamper } = require('@puya/ts');

const result = Timestamper({
    locale: 'en',
    outputFileName: 'result.json',
    template: '{ "hash": "{ts}" }',
    format: 'YYYYMMDDHHmmss'
});

if (result.success) {
    console.log(`Timestamp "result.json" generated successfully`);
} else {
    console.error('Failed to generate timestamp:', result.err);
}

Example 2. No output

const { Timestamper } = require('@puya/ts');

const result = Timestamper({
    locale: 'en',
    skipOutput: true,
    template: '{ "hash": "{ts}" }',
    format: 'YYYYMMDDHHmmss'
});

if (result.success) {
    console.log('Timestamp: ', result.data);
} else {
    console.error('Failed to generate timestamp:', result.err);
}

Variables

You can pass this variables:

  locale: "en", // or "fa"
  outputFileName: "output.json", //file will created at current dir
  templatePath: "", //template file path 
  format: "YYYYMMDDHHmm", //timestamp format
  inlineTemplate: "", //inline template (without path)
  skipOutput: false

Keywords

puya

FAQs

Package last updated on 05 Feb 2025

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