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 🙏

© 2026 – Pkg Stats / Ryan Hefner

transit-taf-core

v1.0.39

Published

Transit Core Automation Framework

Downloads

810

Readme

transit-taf-core

This is a core repository which is exported as an npm package, used across different application test automation frameworks like ecolane, fasterlite, faster web, etc.

Installation

npm install transit-taf-core

Import Paths

The package provides specific import paths for better organization and tree-shaking:

Base UI Components

// Page Actions
import { BasePageActions } from 'transit-taf-core/baseui/actions';

// Page Validations
import { BasePageValidations } from 'transit-taf-core/baseui/validations';

// Page Waits
import { BasePageWaits } from 'transit-taf-core/baseui/waits';

// Common Actions
import { CommonPageActions } from 'transit-taf-core/baseui/common-actions';

// Common Validations
import { CommonPageValidations } from 'transit-taf-core/baseui/common-validations';

// Common Waits
import { CommonPageWaits } from 'transit-taf-core/baseui/common-waits';

// Logger
import { Logger } from 'transit-taf-core/baseui/logger';

Base API Components

// API Helpers
import { BaseAPIHelpers } from 'transit-taf-core/baseapi/helpers';

// API Utils
import { APIUtils } from 'transit-taf-core/baseapi/utils';

Utilities

// General Utils
import { getDate, getTime, getRandomPhoneNumber } from 'transit-taf-core/utils';

// Excel Utils
import { ExcelUtils } from 'transit-taf-core/utils/excel';

// TestRail Client
import { TestRailClient } from 'transit-taf-core/utils/testrail';

// TestRail Importer
import { uploadJunitToTestRail } from 'transit-taf-core/utils/testrail-importer';

Test Data

// Test Data Loader
import { loadTestData, TestDataLoader } from 'transit-taf-core/test-data';

Constants

// Test Tags
import { tags } from 'transit-taf-core/constants/tags';

Reporters

// TestRail Reporter (Deprecated - use upload script instead)
import TestRailReporter from 'transit-taf-core/reporters/testrail';

Scripts

For TestRail integration, use the standalone upload script in your test repository. See TestRail Integration Guide for detailed setup instructions.

// Import the upload functionality
import { uploadJunitToTestRail } from 'transit-taf-core/utils/testrail-importer';

Fixtures

// Playwright Fixtures
import { test, expect } from 'transit-taf-core/fixtures';

Default Import (All Exports)

If you need multiple imports, you can still use the default path:

import { BasePageActions, Logger, tags, getDate } from 'transit-taf-core';

Building and Publishing

# Build the package
npm run build

# Publish to npm
npm publish

Documentation

Usage in Other Projects

After installation, import the specific modules you need using the paths above. This approach provides:

  • Better tree-shaking: Only import what you need
  • Clear organization: Know exactly where each import comes from
  • Type safety: Full TypeScript support with all imports