Quick Start
Get up and running with eggsccc in just a few minutes.
Getting Started
1. Installation
npm install -g @eggsccc/cli
eggs init
Install the eggsccc CLI and initialize a new project.
View Installation Docs2. Authentication
eggs auth login
Configure your API key through the CLI or web console.
Set Up CredentialsRun Your Application
Windows
eggs run --platform windows
macOS
eggs run --platform macos
Linux
eggs run --platform linux
Sample Code
Here's a simple example of using the eggsccc API to fetch project data:
import eggs from '@eggsccc sdk';
async function run() {
const projects = await eggs.getProjectList({ limit: 10 });
console.log(projects);
}
run();
Output Example
[ { id: '1', name: 'Project Alpha' }, { id: '2', name: 'Project Beta' }, { id: '3', name: 'Project Gamma' } ]