Skip to content

AsterkOrg/heliux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Heliux

The webApp library

Make a WebApp with ease using Heliux

Feature

  • Easy to learn
  • simple
  • lightweight
  • Open source

Example

const heliux = require('heliux');

const app = heliux.App({
  port: 3000
}); //making a app

app.newPage('/', () => {
  return `
  <h1>Hello World</h1>
  `
}); //create new page 

app.start(); //statrting the app

Discord Server Documentation