Skip to main content

Quickstart

Follow these steps to get started with emma.

Prerequisites

Before you begin, make sure you have:
  • Node.js 18 or higher
  • npm or yarn

Installation

1

Install the package

npm install emma
2

Initialize your project

npx emma init
3

Start using emma

import { emma } from 'emma';

const result = emma.run();
console.log(result);

Configuration

Create a configuration file in your project root:
{
  "name": "my-project",
  "version": "1.0.0"
}

Next Steps

Now that you’re set up, explore our Guides for more detailed information.