Kakanda HTTP
- Categories:
- javascript
- reactjs
Kakanda HTTP adalah aplikasi berbasis React JS untuk mencari tahu mengenai status code atau status message HTTP.
Proyek open source ini diinspirasi oleh project open source lain bernama Alfred HTTP dan juga sekaligus experimen penggunaan yarn sebagai alternatif npm.
Mengetahui status code HTTP sangat penting terutama saat debugging. Dengan mengetahui status code HTTP, developer dapat tahu kira - kira apa yang harus dilakukan ketika terjadi error.
Installasi
- Install yarn - https://yarnpkg.com/en/docs/install
- Clone repositori -
git clone git@github.com:kuntoaji/kakanda-http.git
- Ganti directori -
cd kakanda-http
- Jalankan web server. Misal, jika ada Python dapat menggunakan perintah
python -m SimpleHTTPServer
. - Buka localhost dari peramban, misal
localhost:3000
.
Cara Build JS Modules
- Jalankan
npm install
. - Jalankan
npx babel modules --out-dir build --presets react-app/prod
- Jika ingin menjalankan dalam watch mode, dapat menjalankan perintah
npx babel --watch modules --out-dir build --presets react-app/prod
.
Project ini dirilis dengan license MIT.
- Demo: https://tools.kaklabs.com/http-status-codes.html
- Repositori: http://github.com/kuntoaji/kakanda-http
- 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.