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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mastorscdn

v2.0.1

Published

An Opensource Front-end UI Library

Downloads

44

Readme

mastorsCDN

mastorsCDN is a CSS and JavaScript template repository designed to support front-end development workflows. With ready-to-use styles and essential scripts, mastorsCDN offers a reliable foundation for building consistent and responsive user interfaces.

Installation

Choose one of the following methods to install mastorsCDN.

Clone the Repository

To directly clone this repository, use:

git clone https://github.com/surajit-singha-sisir/mastorsCDN.git

Direct Include in Head

Include the CSS file in your HTML head:

<link href="https://cdn.jsdelivr.net/npm/[email protected]/mastors.min.css" rel="stylesheet" integrity="sha512-kPc8hRVLpKhkKA09/FLOFXUR6FhfXl1NxHvUClW9NRdAA0tC0Av7m/XK1yTvrgLB13a1PgybphiYncD2ryRlZg==" crossorigin="anonymous">
<script type="module" src="https://cdn.jsdelivr.net/gh/surajit-singha-sisir/[email protected]/mastors.js"></script>

Latest Version

Use the latest version. Include the CSS file link in your HTML head:

<link href="https://cdn.jsdelivr.net/npm/mastorscdn@latest/mastors.min.css" rel="stylesheet" integrity="sha512-kPc8hRVLpKhkKA09/FLOFXUR6FhfXl1NxHvUClW9NRdAA0tC0Av7m/XK1yTvrgLB13a1PgybphiYncD2ryRlZg==" crossorigin="anonymous">

Install with npm

To install via npm, run:

npm install [email protected]

Install with yarn

To install via yarn, run:

yarn add [email protected]

Install with Composer

To install via Composer, use:

composer require surajit-singha-sisir/[email protected]

Install with NuGet

For CSS:

Install-Package [email protected]

Install with NuGet

To install mastorsCDN using NuGet, you can use the following commands:

For CSS:

Install-Package [email protected]

For SCSS:

Install-Package [email protected]

@Latest Version of the Package:

npm install mastorscdn@latest

Add SERVE to server.js

// MASTORSCDN SERVE
app.use('/mastorscdn', express.static(path.join(__dirname, 'node_modules/mastorscdn')));

ADD to index.html

<!-- MASTORSCDN -->
<link rel="stylesheet" href="/mastorscdn/mastors.min.css" /> <!-- MASTORSCDN CORE-->
<link rel="stylesheet" href="/mastorscdn/mastorsIcons/mastorsIcons.css" /> <!-- MASTORSCDN ICONS LIBRARY-->
<script type="module" src="/mastorscdn/mastors.js"></script> <!-- MASTORSCDN SCRIPT -->

❤️ MastorsCDN icons 🥳

MastorsCDN also supports icons. You can use the icons on your webpage. For Icon use this stylesheet on the head tag. Most of the icons are added from the "icomoon.io" library.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/surajit-singha-sisir/[email protected]/mastorsIcons/mastorsIcons.css">

How to use Icons

If I need to use an icon then use m- icon-name.

<i class="m-facebook"></i>

We will publish all the icon documentation later.

Usage

After installation, you can include mastorsCDN in your project as follows: CSS Include the CSS file in your HTML head:

<link rel="stylesheet" href="path/to/mastors.min.css">

JavaScript

To include the mastorsCDN JavaScript file, add the following line before the closing </body> tag in your HTML file:

<script src="path/to/mastors.js"></script>

Replace path/to/ with the path where mastorsCDN files are installed in your project.

Features

  • CSS Templates: Includes pre-designed styles to build and style common components rapidly.
  • JavaScript Utilities: Provides essential JavaScript functions for DOM manipulation, event handling, and more.
  • Responsive Design: Built-in support for responsive layouts, compatible across various screen sizes and devices.

File Structure

Below is a basic structure of the repository:

mastorsCDN/
├── mastors.min.css
├── mastors.js
└── README.md

Contributing

Contributions are welcome! If you'd like to contribute, please follow these steps:

  1. Fork the repository: Click on the "Fork" button at the top right of the repository page to create your copy of the project.
  2. Create a new branch: Use a descriptive name for your branch, such as feature/new-feature or bugfix/fix-issue.
    git checkout -b your-branch-name
  3. Make your changes: Implement the feature or fix the bug you want to address.
  4. Commit your changes: Use clear and concise commit messages.
    git commit -m "Add a brief description of your changes"
  5. Push to your branch: Upload your changes to your forked repository.
    git push origin your-branch-name
  6. Submit a pull request: Go to the original repository where you want to contribute and create a pull request, explaining the changes you made.

Please ensure your code follows the project's coding style and includes any necessary documentation to facilitate the review process.

Thank you for considering contributing to mastorsCDN!