Skip to content

Installation

Before installing Plasma, make sure you have the following installed:

  • Node.js 18.0 or later
  • npm, yarn, or pnpm
  • Git
Install via npm
The recommended way to install Plasma
Terminal window
npm install plasma-core

If you prefer to install manually, follow these steps:

  1. Clone the repository:
Terminal window
git clone https://github.com/your-org/plasma.git
cd plasma
  1. Install dependencies:
Terminal window
npm install
  1. Build the project:
Terminal window
npm run build

After installation, create a plasma.config.js file in your project root:

export default {
// Your configuration options
apiUrl: 'https://api.plasma.dev',
features: {
ai: true,
crm: true,
},
};

Note: Make sure to replace the API URL with your actual endpoint.

Ready to go!