Web app which returns the iconic Hello, World in various locales.
- Print hello world in a random locale
- Select the locale by id
- Use with CLI
- Basic HTTP server
- HTML frontend
- Rebuild using Aleph.js
- Deployment
On macOS use HomeBrew to install deno then update to the latest version.
brew install deno
deno upgradeCreate a basic configuration file using:
code .vscode/settings.jsonwith the following content
{
"deno.enable": true,
"deno.unstable": true,
"deno.lint": true,
"deno.import_intellisense_origins": {
"https://deno.land": true
},
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[typescriptreact]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
}See Makefile for available scripts. The application can run either via CLI or a basic HTTP server.
make testsPlease read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Ruidy - Initial work - Ruidy
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details