Getting Started

Register on CloadIO

In order to use CloadIO services such as real-time database and data logic back-end, you would need to create an account on CloadIO and use the provided credentials in your FrameworkJS project.

Register on CloadIO

Download FrameworkJS Core

Download the latest official version of FrameworkJS.

  • Latest version: 1.2.0
  • Released at: 2023-04-06

Download FrameworkJS

Hello World!

To create your first FrameworkJS project, follow these steps:

  • Open your preferred code editor and then open FrameworkJS folder.
  • Inside the project folder, you can see the js folder. Inside this folder, there is app.js file. To start you should configure this as below:
  • app.js configuration for your first application
    //------------------ config ------------------------------
    app.name = 'myApp';
    //------------------ end of config -----------------------

    The app.name is the registered name that you have made on CloadIO.

After completed these steps, you can run your app in browser. So open the root folder of the project and then click on the index.html, now you can see the "Hello World!".

Congratulations!

You have made your first app with FrameworkJS.