Installation
Get started with Plasma by installing the necessary dependencies and setting up your environment.
Prerequisites
Before installing Plasma, make sure you have the following installed:
- Node.js 18.0 or later
- npm, yarn, or pnpm
- Git
Quick Start
Install via npm
The recommended way to install Plasma
npm install plasma-core
Manual Installation
If you prefer to install manually, follow these steps:
- Clone the repository:
git clone https://github.com/your-org/plasma.git
cd plasma
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration
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.
Next Steps
- Read the Core Concepts to understand Plasma's architecture
- Explore AI Prompts to leverage AI capabilities
- Check out the File Systems guide for managing files