Getting Started
Learn how to integrate enthenti into your workflows and start building powerful applications.
๐ Jump to SetupInstallation
enthenti is available as a package through modern package managers. Choose the method that fits your workflow.
npm
npm install @enthenti/core
yarn
yarn add @enthenti/core
pnpm
pnpm add @enthenti/core
Version 2.5.0 is currently the latest release with 8.4k weekly downloads.
Quick Start
Here's how to get your first project set up:
Initialize Project
Create a new folder for your project and add the necessary configuration file.
Configure API
Set up your API keys in the configuration file. These are managed in your account dashboard.
Start Building
Use the core SDK to build your first feature. Check out the full API example below.
API Example
// Import the ententi core library
import { EntentiSDK } from '@enthenti/core';
// Initialize with your API key
const sdk = new EntentiSDK({
apiKey: 'your_api_key_here',
endpoint: 'https://api.enthenti.com/v1'
});
// Example API call
async function createProject() {
try {
const response = await sdk.post('/projects', {
name: 'My First Project',
description: 'Test project with enthenti SDK'
});
console.log('Project created:', response);
} catch (error) {
console.error('API Error:', error);
}
}
Replace the API key with the one from your account dashboard. This example uses the SDK for basic API interaction.
Next Steps
Join the Community
Get help, share ideas, and connect with developers using enthenti.