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

annotationfinder

v1.2.4

Published

Executable file which finds all your // TODO and // FIXME annotation comments within your directory, log them out, and append them to your README.md file.

Downloads

80

Readme

Annotation Finder

Executable file which finds all your // TODO and // FIXME annotation comments within your directory and can append them to a markdown file.

Installation

You have 3 options here.

  1. EASIEST - Download the annotations (mac / linux) or annotations.exe (windows) binary file and execute it in a linux operating system.
  2. You can clone the package somewhere and access the annotations binary file within the package.
  3. You can install with NPM npm i --dev annotationfinder or Yarn yarn add --dev annotationfinder and you will have access to the entire repo, in which you will want to use the appropriate binary file.

Usage

To use simply call the executable in this package annotations (mac / linux) or annotations.exe (windows).

By default the file will execute in the directory you are calling it from. You can change the directory set to search for annotations by using the directory flag:

mac / linux

$ ./annotations -d="./testdata" OR $ ./annotations -directory="./testdata"

windows

./annotations.exe -d="./testdata" OR $ ./annotations.exe -directory="./testdata"

You can also use this for a single file by using the file flag:

mac / linux

$ ./annotations -f="./testdata/foo" OR $ ./annotations -file="./testdata/foo"

windows

$ ./annotations.exe -f="./testdata/foo" OR $ ./annotations.exe -file="./testdata/foo"

If you want your annotations to be appended to the end of the README.md file in the current directory in markdown format, pass in the append flag:

mac / linux

$ ./annotations -a OR ./annotations -append

windows

$ ./annotations.exe -a OR $ ./annotations.exe -append

By default, if the append flag is used, the results will be appended to the end of the README.md file in the current directory. If there isn't one, one is created. To specify the file which the appending is done, pass in the output flag:

mac / linux

$ ./annotations -a -o="SECONDARYREADME.md" OR $ ./annotations -append -output="SECONDARYREADME.md"

windows

$ ./annotations.exe -a -o="SECONDARYREADME.md" OR $ ./annotations.exe -append -output="SECONDARYREADME.md"

If you want an error to be thrown if a FIXME is found, pass in the rejectfixme flag:

mac / linux

$ ./annotations -rf OR ./annotations -rejectfixme

windows

$ ./annotations.exe -rf OR ./annotations.exe -rejectfixme

Contributing

All contributions are welcome and appreciated! The easiest way is for you to fork your own version, make a new feature branch (example: feature/coverage-increase-50-75) and then make a PR.

All code lies in annotations.go, make your changes in there, and build out both the linux and windows binaries like so: On a mac / linux:

go build -o annotations
env GOOS=windows GOARCH=amd64 go build -o annotations.exe

On a windows:

go build -o annotations.exe
env GOOS=linux GOARCH=arm go build -o annotations

The -o flag is important to make sure the executable is named properly and not the default package name.