Narrat Docs
Search
⌃K

Getting Started

This guide explains how to get started using the narrat game engine in a minute

Getting Started

Getting started with narrat is very quick. There is a ready-to-use template that can get you running your game in a minute

Video Guide

This one minute video shows the entire setup from start to having the game running
How to install narrat and create a game

Text Instructions

Prerequisites

  • Have node.js 16 or above installed (LTS version is fine)

Creating the game project

Open a terminal in a folder of your choice (on Windows, you can shift-right-click in your folder and choose "Open PowerShell window here")
Help with opening the terminal
For more info on how to open a terminal in a folder on Windows and other OS, see this link
Once opened, you can run the following command:
This will download narrat and ask you some questions to configure your project. You can choose between a few game templates to get started. You can now follow the instructions from the tool to run the game, or follow the "Running the game" guide below

Running the game

How it works
The narrat template is essentially a template for a mostly empty web project, with narrat as a library.
node.js is the JavaScript engine used to run our project (and build it or export it to an executable game later).
We use npm to install libraries into the game. npm is simply a package manager for installing JS libraries with node.js
There is a package.json file at the root of the template, which is a standard node.js file for defining a project and its dependencies, which get installed via npm. Inside the dependencies part of this file, you can find narrat with a version number. This is what tells the project to install a specific version of narrat.
Our template uses npm to download and install narrat (and other dependencies) and get the game ready to go. Then using npm scripts, we can use run commands to build/export the game (which all use node.js under the hood one way or another).

Install libraries (only the first time or when updating)

With the narrat game setup, open a terminal inside the folder
There is a first command to install the dependencies (libraries) on first use:
npm install
If you get warnings during npm install
Unless you see actual errors, warnings can generally be ignored
Security issues warning
You will probably see npm complain about "security issues". Those are false positives and can be ignored caused by a very careless implementation of security by NPM. Those security issues are irrelevant to the use case of narrat. Feel free to read more about why npm security warnings are broken in this article by Dan Abramov, creator of React

Running the game

npm start
This should open a browser tab with the game running after a short build time. The game can be accessed at https://localhost:8080
The game is ready to edit!
Those npm commands come from node.js. If the commands aren't recognised, you probably didn't install node.js correctly. More about npm install

Editing the game

It is now easy to make a game by editing the narrat scripts and config files!

Building and exporting the game

Functions Documentation