Forrest logo
back to the ern tool

ern:tldr:e65fc

ern: Create a new `ern` application (`MiniApp`).
$ ern create-miniapp ${application_name}
try on your machine

The command "ern create-miniapp ${application_name}" is a command-line command for using the Electrode Native (ERN) framework to create a new mini app.

Here's a breakdown of the command:

  • "ern" is the command keyword used to interact with the Electrode Native CLI.
  • "create-miniapp" is the specific command provided by Electrode Native to create a new mini app.

The command itself takes an argument called "${application_name}" which represents the desired name for the mini app. You'll need to replace "${application_name}" with the actual name you want to give to your mini app. For example, if you want to name it "MyApp", you would use "ern create-miniapp MyApp" as the command.

By running this command, Electrode Native will create a new mini app template with the specified name. The template will contain the necessary files and structure to start building a mini app within the Electrode Native ecosystem.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ern tool