https://github.com/mdecker-mobilecomputing/angular_leetspeak
Simple Angular app that implements are translator for "ordinary" language to Leetspeak
https://github.com/mdecker-mobilecomputing/angular_leetspeak
angular gh-pages leetspeak
Last synced: about 1 month ago
JSON representation
Simple Angular app that implements are translator for "ordinary" language to Leetspeak
- Host: GitHub
- URL: https://github.com/mdecker-mobilecomputing/angular_leetspeak
- Owner: MDecker-MobileComputing
- License: bsd-3-clause
- Created: 2023-07-01T12:28:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-03T12:39:56.000Z (almost 2 years ago)
- Last Synced: 2025-01-05T21:08:40.569Z (over 1 year ago)
- Topics: angular, gh-pages, leetspeak
- Language: TypeScript
- Homepage:
- Size: 523 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# LeetSpeak #
This repository contains a simple [Angular](https://angular.io/) app that translate text input to [Leetspeak](https://en.wikipedia.org/wiki/Leet).
**Example:**
* Input: *"The quick brown fox jumps over the lazy dog."*
* Output: *"Th3 qu1ck 8r0wn f0x jump5 0v3r th3 142y d09."*
----
## App served by GitHub Pages ##
Access the app via [GitHub Pages](https://pages.github.com/):
https://mdecker-mobilecomputing.github.io/Angular_Leetspeak/
The app was generated for serving by *GitHub Pages* with the following command:
```
ng build --output-path docs --base-href https://mdecker-mobilecomputing.github.io/Angular_Leetspeak/
```
You can also use the following script defined in `package.json`:
```
npm run build
```
----
## Commands ##
This project was created with the following CLI command:
```
ng new LeetSpeak --skip-tests --prefix=mide
```
Check the syntax of the project:
```
ng lint
```
Test the app in the browser:
```
ng serve --open
```
You can also use the following script defined in `package.json`:
```
npm start
```
----
## License ##
See the [LICENSE file](LICENSE.md) for license rights and limitations (BSD 3-Clause License) for the files in this repository.