Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wakx

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wakx

Manage WebAppKit framework

  • 1.0.9
  • npm
  • Socket score

Version published
Weekly downloads
12
increased by500%
Maintainers
1
Weekly downloads
 
Created
Source

Web App Kit framework

Little framework to develop prototype of web app who looks like native (Progressive Web App)

WAK Logo

GitHub project link

What I can do ?

  • Manage easily your app screens
  • Create 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 :

FunctionArgumentsTypesDescription
navigatescreenNamestringSwitch into another screen
alertmessagestringDisplay an alert on main screen
getResourceURLname, formatstring, FileFormatReturn your resource link
addComponenttag, componentstring, stringDefine your custom web component in the DOM

Custom variables you can use :

VariableOptions
FileFormatPNG, JPG, GIF

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 like this.onclick
    }

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

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

⚠️ 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

  • Launch your app on your default browser

npx wakx ./MyApp start

  • Just start the server

npx wakx ./MyApp server

  • Upgrade you app version

npx wakx ./MyApp upgrade

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 ...


VSCode extension

Coming soon


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)


©2023 NanoDév Studio

Keywords

FAQs

Package last updated on 21 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc