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

ies-dynamic-input

v0.0.1

Published

Explaining name project.

Readme

IE01Y23BC (Base Clone FrontEnd)

Name

Explaining name project.

| Project code | Internal Customer Code | Start Finance Year |System Name Abbreviation | | ----------- | ---------------------- | ----------------------------------------------|------------------------- | | Format | Alpha-Numeric, Char(04)| "Y" + Last 02 digits of Started year, Char(03)| | | IE01Y23BFE | IE | Y23 | BEF | |

Directory Structure

The top level directory structure will be as follows:

└── /src
    ├── /api
    ├── /assets
    ├── /components
    ├── /configs
    ├── /constants
    ├── /contexts
    ├── /hooks
    ├── /interface
    ├── /locales
    ├── /modules
    ├── /pages
    ├── /routes
    ├── /services
    ├── /shared
    ├── /stores
    ├── /styles
    ├── /types
    └── /utils

Folder Structures and explanation:

Modules

  • Modules folder contain an application feature. Each module has components, hooks, pages, routes and interfaces required by the module, creating each as a block.
    └── /src
        └── /modules
                └── /IESase
                    ├── /assets
                    ├── /components
                    ├── /constants
                    ├── /hooks
                    ├── /interface
                    ├── /locale
                    ├── /pages
                    ├── /routes
                    ├── /services
                    ├── /styles
                    └── /utils

API

  • The api folder contains the API Layer of our application. It will have methods that are responsible for performing API requests and communicating with a server.
    └── /src
        └── /api
            ├── /APIInterceptor.ts
            ├── /common.ts

Assets

  • The assets folder contains fonts, images, and videos. In the fonts, you can keep any custom fonts and typefaces. In images store any pictures used throughout the application.
    └── /src
        └── /assets

Components

  • The components folder contains any reusable components that are commonly used throughout the application. For instance, button, form components, components related to typography, and so on.
    └── /src
        └── /components
            ├── /Button.tsx
            ├── /ButtonStyles.ts 

Contexts

  • The context directory should contain any global-level context state providers.
    └── /src
        └── /contexts
            ├── /AuthContext.tsx
            ├── /ThemeContext.tsx

Configs

  • In the config directory, you can put any runtime config files for your application and third-party services.
    └── /src
        └── /configs
                ├── /consts.ts

Constants

  • Here you can put any constant variables that are used throughout the application.
    └── /src
        └── /constants
            └── /Theme
                    ├── /ThemeConstants.ts

Hooks

  • The hooks directory, as the name suggests, would hold any custom and reusable hooks.
    └── /src
        └── /hooks
            ├── /useTheme.ts
            ├── /useTable.ts

Pages

  • The pages directory contains your web application views.
    └── /src
        └── /pages
            └── /Login
                ├── /Login.tsx
                ├── /LoginStyle.ts 

Routes

  • The routes folder is just a place in your web application to store the routes path to different screens.
    └── /src
        └── /routes
            └── /guards
            └── /pages
                ├── /Auth.tsx
                ├── /Dashboard.tsx

Stores

  • The global data store will be contained in the store directory - in this case, Redux. Each feature will have a folder, which will contain the Redux Toolkit slice, as well as actions and tests.
    └── /src
        └── /stores
            ├── /AccountSlice.ts
            ├── /CommonSlice.ts

Shared

  • The share module doesn’t relate to a components, it lists reusable components used in other feature modules.
    └── /src
        └── /shared
            └── /MenuSelect
                ├── /index.tsx

Utils

  • Any utilities and small reusable functions should go here — for example, functions to format date, time, etc.
    └── /src
        └── /utils
            ├── /helper.ts
            ├── /utils.ts

Description

Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.

Roadmap

If you have ideas for releases in the future, it is a good idea to list them in the README.

Contributing

State if you are open to contributions and what your requirements are for accepting them.

For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.

You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.

Authors and acknowledgment

Show your appreciation to those who have contributed to the project.

License

For open source projects, say how it is licensed.

Project status

If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.