CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

HTML5 as App??

Georg

Newbie
Jun 24, 2017
68
65
Hello! I wanted to ask if there is some kind of emulator to play HTML5 games?? I know that they are designed to be played on a browser, but my question is more about if there is a way to convert them to apps or play them as something similar without opening the browser. Thanks.
 

Nadekai

Well-Known Member
Aug 18, 2021
1,825
4,647
Step 1 - Download the latest version of .

Step 2 - Create a package.json file inside the root folder (the folder containing your .html file).
Note: While this step isn't necessary, but it allows you to customize the window size, without this file, nw.js will assume default settings.

Step 3 - Add the following content to package.json. Here’s an example for "Masters of Raana":

JSON:
{
  "name": "MastersOfRaana",
  "main": "start_game.html",
  "version": "1.0.0p"
}
Alternatively, you can include a window configuration for auto-resizing:
JSON:
"window": {
  "width": 3840,
  "height": 2160
}
This makes the final package.json look like this:
JSON:
{
  "name": "MastersOfRaana",
  "main": "start_game.html",
  "version": "1.0.0p",
  "window": {
    "width": 3840,
    "height": 2160
  }
}
Step 4 - Extract the contents of the NW.js zip file into the root folder and launch nw.exe.

Step 5 - Pet the one-eyed pet snake.
 
Last edited:
  • Like
Reactions: Erosoft