Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Little framework to develop prototype of web app who looks like native (Progressive Web App)
Using methods when App
is called :
Function | Arguments | Types | Description |
---|---|---|---|
navigate | screenName | string | Switch into another screen |
alert | message | string | Display an alert on main screen |
getResourceURL | name, format | string, FileFormat | Return your resource link |
addComponent | tag, component | string, string | Define your custom web component in the DOM |
Custom variables you can use :
Variable | Options |
---|---|
FileFormat | PNG, JPG, GIF |
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>
npm install wakx
npx wakx init
npx wakx ./MyApp screen
npx wakx ./MyApp component
npx wakx ./MyApp start
npx wakx ./MyApp server
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 ...
Coming soon
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)
FAQs
Dev version - Manage WebAppKit framework
We found that wakx-dev demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.