Info Folder¶
This folder contains reference materials for the key tools used in this project: Node.js, npm, npx, Expo CLI, and EAS CLI.
Purpose¶
The info folder serves as a centralized location for in-depth explanations, best practices, and usage tips for each tool. Detailed documentation is provided in the respective markdown files.
Folder Contents¶
| File | Description |
|---|---|
nodejs.md |
Detailed explanation of Node.js concepts and workflows |
npm-npx.md |
Guide to npm and npx usage, scripts, and best practices |
expo.md |
Guides and tips for working with Expo projects |
eas.md |
Instructions and recommendations for using EAS CLI effectively |
Usage¶
Use this folder as a reference library when learning, troubleshooting, or understanding how each tool fits into the project. Keep the documentation up-to-date to reflect the latest versions and best practices. For installation or setup instructions, see the Getting Started folder.
NODE.JS Information
See node.js.md for a details on installing and using Node.js.
NPM/NPX CLI Information
See npm-npx.md for details on installing and using npm and npx.
EXPO CLI Information
See expo.md for details on installing and using the Expo Development CLI.
EAS CLI Information
See eas-cli.md for details on installing and using the Expo Application Services CLI.
project Structure¶
A visual representation of the core tools and how they interact in this project:
flowchart TD
A[Node.js<br>Runtime & npm] --> B[npm<br>Package Management]
A --> C[npx<br>Execute Binaries]
B --> D[Expo CLI<br>React Native Dev]
C --> D
D --> E[EAS CLI<br>Build & Deploy]
classDef tool fill:#f9f,stroke:#333,stroke-width:2px;
class A,B,C,D,E tool;