0.0.4 • Published 1 year ago

galliumjs v0.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Create Apps In Node.js

Package/Compile App

node node_modules/gallium/index.js pack

Functions

Require

const gallium = require('gallium');

Initialize

const window = gallium.init({
    title: 'Gallium',
    width: 800,
    height: 600,
    fullscreen: false,
});

Create Text

let text1 = window.text('Hello, World!', 10, 10, 'Arial', 10, 'Black');

Run

window.run();