LeChris
https://habbo.codes/
What?
xHabbo as most people know is my administration panel project. However, after recoding the entire core I realized it's a very easy to scale solution for any project leading me to create another version suited for basic content management systems.
Explain
xHabbo Framework will be a basic Node CMS with two versions: Plus and Arcturus support. My goal is to help beginners come into Node with a clean and easy to follow skeleton framework for their hotel and to escape the horrors of RevCMS, Chocolaty and whatever other garbage runs among our PHP developers.
Coding Snippets
Boot Manager
xHabbo as most people know is my administration panel project. However, after recoding the entire core I realized it's a very easy to scale solution for any project leading me to create another version suited for basic content management systems.
Explain
xHabbo Framework will be a basic Node CMS with two versions: Plus and Arcturus support. My goal is to help beginners come into Node with a clean and easy to follow skeleton framework for their hotel and to escape the horrors of RevCMS, Chocolaty and whatever other garbage runs among our PHP developers.
Coding Snippets
Boot Manager
PHP:
import Async from 'async'
import Messages from './libraries/core/messages'
import Website from './libraries/core/http/system'
import Install from './libraries/core/install/system'
import Database from './libraries/core/database/test'
import Background from './libraries/background/system'
export default class Application
{
constructor ()
{
Async.parallel([
Messages.launch,
Install.check,
Database.check,
Website.launch,
Background.launch
], ((e, r) => {
Messages.write(100, r)
if (e)
{
errorMode = true
Messages.write(200, e)
}
}))
}
}