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

til_tracker

v1.0.3

Published

Command-line tool processing input .txt files into generated .html files.

Downloads

2

Readme

til_tracker

Command-line tool written in Typescript processing input .txt files into generated .html files.

Features

  • User will be able to specify either a file or folder of files as input for conversion
  • If the input is a .txt or a .md file, it should process that file.
  • If it's a directory, it will look for and find all .txt and .md files within that folder, processing each one.

Download && Install til_tracker

$ npm i til_tracker

// go to the root directory of the til_tracker
$ cd node_modules/til_tracker

// install ts-node globally if you do not have it already
$ npm install -g ts-node

// now you can start using the til_tracker

Argument Options

| Option | Responsibility | | -------------------------------------------- | ------------------------------------------------- | | -v, --version | displays app name and version | | -h, --help | show help | | -s, --stylesheet <'URL to a CSS stylesheet'> | CSS stylesheet to be used in generated HTML files | | -l, --lang <'language'> | language to be used in generated HTML files | | -c, --config <'.toml config file'> | path to .toml config file |

Usage

Check Version of the app

ts-node src/index.ts --version or ts-node src/index.ts -v

Help Command

ts-node src/index.ts --help or ts-node src/index.ts -h

Convert .txt file to .html file

ts-node src/index.ts fileName.txt

Example

./examples.txt

This is the first paragraph of examples.txt.

This is the second paragraph of examples.txt.

This is the third paragraph of examples.txt.
~/WebstormProjects/til_tracker $ ts-node src/index.ts examples.txt
Existing folder was successfully removed
Output folder is successfully created!
examples.html is created successfully!
./til/examples.html

<!doctype html>
<html lang="en-CA">
  <head>
    <meta charset="utf-8" />
    <title>examples</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
  </head>
  <body>
    <h1>examples</h1>
    <p>This is the first paragraph of examples.txt.</p>
    <p>This is the second paragraph of examples.txt.</p>
    <p>This is the third paragraph of examples.txt.</p>
  </body>
</html>

Convert files in a folder to .html files in a folder

ts-node src/index.ts folderName

Example

./examples/test1.txt

This is the test1 txt file of examples folder.

This is the test1 txt file of examples folder.
./examples/test2.txt

This is the test2 txt file of examples folder.

This is the test2 txt file of examples folder.
~/WebstormProjects/til_tracker $ ts-node src/index.ts examples
Existing folder was successfully removed
Output folder is successfully created!
test1.html is created successfully!
test2.html is created successfully!
./til/examples.html

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>test1</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
  </head>
  <body>
    <h1>test1</h1>
    <p>This is the test1 txt file of examples folder.</p>
    <p>This is the test1 txt file of examples folder.</p>
  </body>
</html>
./til/test2.html

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>test2</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
  </head>
  <body>
    <h1>test2</h1>
    <p>This is the test2 txt file of examples folder.</p>
    <p>This is the test2 txt file of examples folder.</p>
  </body>
</html>

Convert .txt file to .html file with another language

ts-node src/index.ts fileName -l language

Example

~/WebstormProjects/til_tracker $ ts-node src/index.ts examples.txt -l fr
Existing folder was successfully removed
Output folder is successfully created!
examples.html is created successfully!
./til/examples.html

<!doctype html>
<html lang="fr">
  <head>
    <meta charset="utf-8" />
    <title>examples</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
  </head>
  <body>
    <h1>examples</h1>
    <p>This is the first paragraph of examples.txt.</p>
    <p>This is the second paragraph of examples.txt.</p>
    <p>This is the third paragraph of examples.txt.</p>
  </body>
</html>

Convert .md file to .html file with another language

ts-node src/index.ts fileName -l language

Example

./examples/test.md

# Heading Level 1

## Heading Level 2

### Heading Level 3

Click this [link]("https://commonmark.org/help/") for more ino!

*Italic* font

**Bold** font as well!

#### Heading Level 4

Should be a paragraph 1

Should be a paragraph 2

Should be a paragraph 3
~/WebstormProjects/til_tracker $ ts-node .\src\index.ts .\examples\test.md
Existing folder was successfully removed
Output folder is successfully created!
test.html is created successfully!
./til/test.html

<!doctype html>
<html lang="en-CA">
  <head>
    <meta charset="utf-8" />
    <title>test</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
  </head>
  <body>
    <h1>test</h1>
    <h1>Heading Level 1</h1>
    <h2>Heading Level 2</h2>
    <h3>Heading Level 3</h3>
    <p>Click this <a href="https://commonmark.org/help/">link</a> for more ino!</p>
    <p><i>Italic</i> font</p>
    <p><b>Bold</b> font as well!</p>
    <h4>Heading Level 4</h4>
    <p>Should be a paragraph 1</p>
    <p>Should be a paragraph 2</p>
    <p>Should be a paragraph 3</p>
  </body>
</html>

Convert .txt file to .html file with another language and stylesheet

ts-node src/index.ts folderName -l language -s CSS-styelesheet-URL

Example

~/WebstormProjects/til_tracker $ ts-node src/index.ts examples -l fr -s https://cdn.jsdelivr.net/npm/water.css@2/out/water.css                                                                        ✔  23:08:51
Existing folder was successfully removed
Output folder is successfully created!
test1.html is created successfully!
test2.html is created successfully!
./til/test1.html

<!doctype html>
<html lang="fr">
  <head>
    <meta charset="utf-8" />
    <title>test1</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" />
  </head>
  <body>
    <h1>test1</h1>
    <p>This is the test1 txt file of examples folder.</p>
    <p>This is the test1 txt file of examples folder.</p>
  </body>
</html>
./til/test2.html

<!doctype html>
<html lang="fr">
  <head>
    <meta charset="utf-8" />
    <title>test2</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" />
  </head>
  <body>
    <h1>test2</h1>
    <p>This is the test2 txt file of examples folder.</p>
    <p>This is the test2 txt file of examples folder.</p>
  </body>
</html>

Note: Even if a file and a folder share the same name, you will still be able to obtain the desired result. Since folders do not have file extensions, there is no confusion between the folder and the file.

Specify stylesheet URL or relative path to a CSS stylesheet to be used in the of generated HTML files

$ ts-node src/index.ts fileName.txt -s stylesheetURL
or
$ ts-node src/index.ts fileName.txt -s <relative-path-to-css-file>

Example

~/WebstormProjects/til_tracker $ ts-node src/index.ts examples.txt -s https://cdnjs.cloudflare.com/ajax/libs/tufte-css/1.8.0/tufte.min.css
Existing folder was successfully removed
Output folder is successfully created!
examples.html is created successfully!
./til/examples.html

<!doctype html>
<html lang="en-CA">
  <head>
    <meta charset="utf-8" />
    <title>examples</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/tufte-css/1.8.0/tufte.min.css"
    />
  </head>
  <body>
    <h1>examples</h1>
    <p>This is the first paragraph of examples.txt.</p>
    <p>This is the second paragraph of examples.txt.</p>
    <p>This is the third paragraph of examples.txt.</p>
  </body>
</html>
~/WebstormProjects/til_tracker $ ts-node src/index.ts examples1.md -s examples/styles/test.css
Existing folder was successfully removed
Output folder ./til is successfully created
examples1.html is created successfully!
./til/examples1.html

<!doctype html>
<html lang="en-CA">
  <head>
    ...
    <link rel="stylesheet" href="../examples/styles/test.css" />
    ...
  </head>
</html>

You can even specify all of their options in a TOML formatted configuration file

Example

./config.toml

lang = "fr-CA"
stylesheet = "https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"
 ~/WebstormProjects/til_tracker $ src/index.ts examples -c config.toml                                                                                                                           ✔  15:19:08
Existing folder was successfully removed
Output folder ./til is successfully created
examples1.html is created successfully!