Notice: This repository was initially created as a prototype or first demo (MVP) for Rapidcoder. It no longer contains the project's main functionalities, as they have been moved to a different location. This repository is kept for historical reference and is not actively maintained.
Rapidcoder's initial prototype was a foundational step in our development journey. It serves as a snapshot of our early ideas and attempts, useful for understanding the project's evolution.
This section outlines the coding conventions and commands used during the early phase of Rapidcoder. They are provided for reference only.
- File naming:
filename.type.ts
(e.g.,hello-world.component.ts
) - Class naming: PascalCase (e.g.,
ExampleClass
) - Function naming: KebabCase (e.g.,
exampleFunction
) - Variable naming: KebabCase (e.g.,
exampleVariable
) - Enum naming: SnakeCase (e.g.,
EXAMPLE_VARIABLE
) - Avoid comments in code; refactor if necessary
- Refrain from including inappropriate language
npm run start
: Launches a dev server.ng generate component component-name
: For generating new components.ng build
: Builds the project.ng test
: Executes unit tests via Karma.
- Angular CLI:
ng help
or Angular CLI Overview and Command Reference.
Note: The information above is for archival purposes and does not reflect current development practices or active maintenance.