
Starter repo for projects using the atproto api (bluesky).
The Atproto Starter Kit is a template repository that can be used to quickly start a new project. It requires Node 18+ with TypeScript and ts-node installed globally. By adding your Bluesky username and password to the .env file, you can run your app using the npm run start or ts-node-esm index.ts command. The kit also recommends using eslint and prettier for code linting and enforcing code style.
npm run start or ts-node-esm index.tsThe Atproto Starter Kit is a template repository designed to help developers quickly start new projects. It requires Node 18+ with TypeScript and ts-node installed globally, and provides a simple way to run the app using the provided commands. The kit also recommends using eslint and prettier for code linting and enforcing code style. Overall, it offers a convenient starting point for building applications with minimal setup required.

ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.