Alay Translator di Github
- Categories:
- javascript
Beberapa waktu lalu Facebook merilis Create React App untuk mempermudah pembangungan aplikasi berbasis React.
Dengan menggunakan Create React App tersebut, developer dapat fokus ke pembangunan aplikasi tanpa memusingkan konfigurasi.
Penasaran dengan hal tersebut, saya ingin mencoba Create React App serta merealisasikan rencana saya untuk open source tool Alay Translator di GitHub. Ternyata memang lebih mudah.
Sedikit review, adanya hot reloading dan ESLint di Create React App membuat development menjadi mudah dan enak. Sayangnya Create React App belum ada fitur untuk testing untuk melakukan TDD.
Instalasi Alay Translator
- Clone repository:
git clone git@github.com:kuntoaji/alay-translator.git
cd alay-translator
npm install
Development Environment
Jalankan npm start
untuk menjalakan aplikasi pada mode development. Buka http://localhost:3000 di browser untuk melihat hasilnya.
Production Environment
Build Alay Translator untuk mode production ke dalam direktori build
dengan menjalankan npm run build
. Nama file hasil build telah di optimize, minify dan diberi hash.
Repositori: https://github.com/kuntoaji/alay-translator
- Tags:
- #javascript
- #reactjs
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.