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 🙏

© 2024 – Pkg Stats / Ryan Hefner

wakx

v1.1.6

Published

Manage WebAppKit framework

Downloads

27

Readme

Web App Kit framework

Minimalist and lightweight framework to init and build web app based on Progressive Web App process, web app like native application.

WAK Logo

GitHub project link

What I can do ?

  • Create easily progressive web app
  • Manage your app screens
  • Use custom components with web component

What I can't do ?

  • Nothing at all ! This framework is at the begining, so it has to evolve day after day

Documentation

Using methods when App is called :

| Function | Arguments | Types | Description | | -------- | --------- | ----- | ----------- | | navigate | screenName | string | Switch into another screen | | getResourceURL | file | string | Return your resource link | | addComponent | tag, component | string, string | Define your custom web component in the DOM |

Create custom component

In your component script :

import { CustomComponent } from "../app/App.js";

const STYLE = `
    color: blue;
`;

class MyComponent extends CustomComponent {
    constructor() {
        super();
        // Add events listener or other
    }

    render() {
        return `
            <span style="${STYLE}">${this.properties.value}</span>
        `;
    }

    update() {
        // Optional
        // Define processing after displaying the component and its updates
    }
}

export {
    MyComponent
};

In your screen JavaScript file :

import { App } from "./../../app/App.js";
import { MyComponent } from "./../../components/MyComponent.js";

App.addComponent("my-component", MyComponent);

In your screen HTML file :

<my-component value="Hello blue text"></my-component>

You can define all properties you want for your component. Components have dynamic attributes, changing an attribute with the setAttribute method will refresh the component.

⚠️ Your custom component tag has to have at minimum one dash like <dark-button> or <big-title-header>


How to use WebAppKit node package ?

  • Prerequisites

Node.js with npm and npx

  • Install the necessary packages

npm install wakx

  • Initiate a new project

npx wakx init

  • Create a new screen

npx wakx ./MyApp screen

  • Create a new component

npx wakx ./MyApp component

  • Start a local server and run your app

npx wakx ./MyApp start

-p PORT | --port PORT : Define server port number
-l | --launch : Open app on default browser

  • Build app with manifest update

npx wakx ./MyApp build

You can also use my package locally by donwloading package-npm folder, install necessary packages with npm install in the folder, and by using node ./wakx.js ...


Progressive web app

You can test your web app like native app just to add it as a shortcut on your mobile home screen, from your actual browser (Safari for iOS and Chrome for Android are recommended)


©2024 Nolann Morencé