1.2 KiB
1.2 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Repository Overview
This repository is a newly initialized Node.js project focused on time-related functionality (exact scope TBD). It currently contains only core configuration files with no source code, tests, or build tools implemented yet.
Core Technologies
- Node.js: JavaScript runtime environment (type: commonjs)
- npm: Package manager (no dependencies installed yet)
Key Commands
As the project is in its early stages, only basic npm commands are available:
# Initialize npm and install dependencies (when package.json evolves)
npm install
# Run tests (placeholder script currently)
npm test
Future instances should update this section with actual commands for:
- Building/linting (e.g., with TypeScript, ESLint)
- Testing (e.g., with Jest, Mocha)
- Development workflows (e.g., nodemon for hot reloading)
Architecture
No code architecture exists yet. As the repository evolves, document the high-level architecture here, focusing on:
- Major components for time-related functionality
- Core data models and algorithms
- Integration with external libraries or APIs (if any)