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

ilib-tools-common

v1.9.1

Published

Library of common classes and functions for the ilib command-line tools

Downloads

95

Readme

ilib-tools-common

Common code shared between the command-line tools such as loctool and i18nlint

License

Copyright © 2022-2023, JEDLSoft

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and limitations under the License.

Release Notes

v1.9.1

  • forgot to export the HTML data in the previous version from the main entry point

v1.9.0

  • added data about HTML in the Utils
    • nonBreakingTags - a hash of all HTML tags that do not break a string
    • selfClosingTags - a hash of all HTML tags that are commonly self-closing
    • ignoreTags - a hash of HTML tags where the content is ignored, such as
    • localizableAttributes - a hash of all tags that contain attributes which have localizable values

v1.8.1

  • update dependencies
  • fixed a bug where the ResourceXliff.getVersion() call was documented to return a string, but it came out as a floating point number instead. Made it return the string properly.
  • converted all unit tests to jest

v1.8.0

  • added parsePath() utility function which takes a template and a path and returns an object that maps each template parameter to a part of that path
    • getLocaleFromPath() is now re-implemented to use this function to find the locale parts of a path

v1.7.0

  • added getLines() method to tell how many lines there are in the xml file
  • added support for location information of the start of each resource in the original file where the resource instances were read from
    • supports line and character within the line

v1.6.0

  • Added isDirty() method to the Resource class so we can see whether or not the resource has been modified since it was first created
    • also added clearDirty() method

v1.5.0

  • Added getVariant method to the TranslationUnit class

v1.4.0

  • Added TranslationUnit and TranslationVariant classes
  • added hashKey function to the utilities
  • fixed missing import for makeDirs() utility function

v1.3.0

  • Added more utility functions:
    • isEmpty - return whether or not an object is empty
    • cleanString - removing differences that are inconsequential for translation such as leading whitespace
    • makeDirs - create directories on disk
    • containsActualText - test if there is text left over after HTML and entities are stripped
    • objectMap - visitor pattern for objects

v1.2.0

  • Added formatPath and getLocaleFromPath utility function

v1.1.0

  • Added ResourceXliff class (represents an xliff file as a list of Resource instances)
  • Added TranslationSet class (sets of Resources)
  • Introduced some backwards compatibility support so that this library can be used with loctool plugins.
    • added some deprecated methods and accept some deprecated constructor parameters

v1.0.0

  • Initial code copied from loctool 2.18.0:
    • Resource
    • ResourceString
    • ResourceArray
    • ResourcePlural