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

@alkimia/framework

v0.1.0

Published

Alkimia framework to build JavaScript modules

Downloads

80

Readme

Alkimia Framework CLI

Overview

The Alkimia Framework CLI is a command-line tool designed to enhance the development experience within the Alkimia framework. Alkimia is a JavaScript framework that strives to minimize abstraction, encouraging developers to work directly with JavaScript and the HTML DOM. Unlike frameworks such as React, Alkimia emphasizes simplicity and direct manipulation of the DOM, making it easier to build dynamic web applications without the overhead of heavy abstractions.

Key Principles

  • Direct JavaScript Usage: By advocating the closest usage of JavaScript, Alkimia minimizes syntactic sugar, such as classical object creation. This approach enhances transparency and simplicity in code.
  • Function Factory Approach: The CLI generates modules that use the function factory pattern to expose public methods while keeping properties and methods private.
  • Singleton and Instance Constructors: Each module provides both a singleton and an instance constructor, offering flexibility in managing unique and multiple instances as needed.
  • Encouraged Verbosity: To further reduce abstractions, the framework encourages verbosity. This ensures that the code remains clear and understandable, even for complex applications.
  • View Module Creation: The CLI offers the option to create modules that require a view. In such cases, HTML and SCSS placeholder files are added automatically. Additionally, a playground folder is included in each module, providing an introduction to the component's usage, including data binding.

Features

  • Component Creation: Effortlessly generate new components with predefined structures tailored to your project.
  • State Management: Seamlessly integrate state management using Alkimia's built-in utilities.
  • Resource Management: Efficiently import and manage various resources with ease.

Features

  • Component Creation: Easily generate new components with predefined structures.
  • State Management: Utilize built-in state management utilities.
  • Resource Management: Import and manage various resources with ease.
  • View Module Creation: Create modules that require a view, including automatic generation of HTML and SCSS placeholder files and a playground folder for component usage and data binding.

Directory Structure

alkimia-framework-cli/
├── apptest/
│   └── InputElement/
│       ├── InputElement.js
│       ├── InputElement.html
│       ├── InputElement.scss
│       └── playground/
│           ├── index.mjs
│           └── package.json
├── src/
│   ├── createComponent.js
│   ├── libs/
│       └── StatesFactory.js
│   └── makeResourcesImportable.js
├── cli.js
├── index.mjs
└── README.md

Installation

To install the Alkimia Framework CLI, you need to have Node.js and npm installed on your machine. Then, run the following command:

npm install -g alkimia-framework-cli

Usage

Usage instructions for the CLI tool go here. For example:

Creating a New Component

To create a new component, run:

alkimia create-component <component-name>

Managing States

Documentation for managing states using the StatesFactory utility.

Importing Resources

Instructions for using the makeResourcesImportable function to manage your resources efficiently.

Contributing

If you wish to contribute to the Alkimia Framework CLI, please follow the guidelines below:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and commit them with descriptive messages.
  4. Push your changes to your fork.
  5. Create a pull request.

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.