Exteranto

The browser extension framework

View the Project on GitHub exteranto/exteranto.github.io

Getting Started
Installation
Directory Structure
Application Configuration

Tutorials
Your First Exteranto

Concepts
Browser Extension Basics
Handling the IOC Container
Typed Message Passing
Service Providers

Installation

Via the Exteranto CLI

Install the Exteranto CLI and use it to scaffold your application with a single command.

npm i -g @exteranto/cli
ext create my-extension

Manual cloning

Or you can clone the exteranto/exteranto repository manually.

git clone git@github.com:exteranto/exteranto.git my-application
cd my-application
npm i
rm -rf .git
git init

Next (Directory Structure) ยป