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

isite-client

v1.0.2

Published

Client Site Files Integrated With Isite Framework

Downloads

12

Readme

Client Side Files Integrated With Isite Framework

  • For More Info About Isite Framework https://github.com/absunstar/isite
  • custom css , bootstrap , font-awesome
  • custom js , jquery , angular
  • All Required Fonts

How To Use

  • Goto your Site Folder
  • Then Run This Code
    cd apps
    git clone https://github.com/absunstar/isite-client
  • Or Install in Any FOLDER_PATH
  • Then Use in Your Site Like This
const site = require('isite')({port : 8080}) // Required Isite
site.importApp(FOLDER_PATH)
  • Install From npm
    npm install isite-client
const site = require('isite')({port : 8080}) // Required Isite
require('isite-client')(site)
  • to use site theme css
    <link rel="stylesheet" href="/x-css/site.css">
  • to use bootstrap3 css
<link rel="stylesheet" href="/x-css/bootstrap3.css">
<script src="/x-js/jquery.js"></script>
<script src="/x-js/bootstrap3.js"></script>
  • to use bootstrap4 css
<link rel="stylesheet" href="/x-css/bootstrap4.css">
<script src="/x-js/jquery.js"></script>
<script src="/x-js/bootstrap4.js"></script>
  • to use semantic css
<link rel="stylesheet" href="/x-css/semantic.css">
<script src="/x-js/jquery.js"></script>
<script src="/x-js/semantic.js"></script>
  • to use font-awesome css
<link rel="stylesheet" href="/x-css/font-awesome.css">
  • to use jquery js
<script src="/x-js/jquery.js"></script>
  • to use angular js
<script src="/x-js/angular.js"></script>
  • to use site js
<script src="/x-js/site.js"></script>

Work With site Theme

Default Page with Angular Support

<!DOCTYPE html>
<html lang="en" ng-app="myApp">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="/x-css/site.css">

</head>

<body ng-controller="mainController">

    <script src="x-js/site.js"></script>
    <script src="x-js/angular.js"></script>
    <script>
        var app = angular.module('myApp', [])
        app.controller('mainController', ($scope, $http, $timeout, $rootScope) => {

        })
    </script>
</body>

</html>

Navbar


    <nav class="navbar">
        <div class="brand">
            <a href="/"> موقع تجريبى </a>
        </div>  
        <ul class="links">
            <li>
                <a href="/"> لينك 1 </a>
                <a href="/"> لينك 2 </a>
                <a href="/"> لينك 3 </a>
                <a href="/"> لينك 4 </a>
            </li>
        </ul>
    </nav>

Layout

<div class="row">
    <div class="col3"></div>
    <div class="col6"></div>
    <div class="col3"></div>
</div>

Form

  <form class="form">
    <div class="row10 ">
        <div class="col5">
            <div class="control">
                <label>User Name</label>
                <input type="text">
            </div>
        </div>
        <div class="col5">
            <div class="control">
                <label>User Email</label>
                <input type="email">
            </div>
        </div>
    </div>
    <div class="row">
        <div class="control">
            <label>Select Gender</label>
            <select>
                <option> Male </option>
                <option> Female </option>
            </select>
        </div>
    </div>
</form>

Modal

 <div id="testModal" class="modal">
    <div class="modal-content">
       
       <div class="modal-header">
            <span class="close">&times;</span>
            <h2> Title Here </h2>
        </div>
        
        <div class="modal-body">
                Body Here
        </div>

        <div class="modal-footer center">
            <a class="btn bg-red" onclick="site.hideModal('#testModal')"> Close </a>
        </div>

    </div>
</div>
    
    
    <a class="btn bg-blue" onclick="site.showModal('#testModal')"> Show Test Modal </a>

Fixed Menu

  • right-fixed-menu
  • left-fixed-menu
  • bottom-fixed-menu
<ul class="right-fixed-menu">
       <li><a href=""> Item 1 </a></li>
       <li><a href=""> Item 1 </a></li>
       <li><a href=""> Item 1 </a></li>
       <li><a href=""> Item 1 </a></li>
    </ul>