Take your first steps with Anam
Create project directory
Initialize Node.js project
bash npm init -y
This creates a package.json
file for managing
dependencies.Create public directory
bash mkdir public
public
folder will contain your HTML and JavaScript files that are
served to the browser.Install dependencies
bash npm install express dotenv
Create environment file
.env
file in your project root to store your API key securely:your-api-key-here
with your actual Anam API key. Never commit this file to version control.