How to load env variables using AWS Secrets Manager
Discussion

How to load env variables using AWS Secrets Manager

For some secure web application, especially backend services requires high security protection. Most of our environment variables such as database credentials, API secrets etc are stored in .env file in most of web applications. But this can bring us a big security hole if the server is breached. Thus, nowadays some products wants to store …

Discussion

Continuous delivery, from code to deployment using Bamboo

Build Focus on coding and count on Bamboo as your CI and build server! Create multi-stage build plans, set up triggers to start builds upon commits, and assign agents to your critical builds and deployments. Test Testing is a key part of continuous integration. Run automated tests in Bamboo to regress your products thoroughly with …

Android Android Angular CSS Data Visualization Discussion Frontend HTML ios Javascript jQuery Laravel Mobile React Native React.js UI/UX Vue.js

Mapbox GL

Mapbox GL is a suite of open-source libraries for embedding customizable and responsive client-side maps in web, mobile, and desktop applications. Mapbox GL maps render at a high frame rate. The abbreviation “GL” comes from OpenGL, the industry-standard Open Graphics Library. Mapbox GL allows you to use custom styles designed in Mapbox Studio. You can also manipulate every aspect of …

Discussion

Webkit browser

WebKit is a browser engine developed by Apple and primarily used in its Safari web browser, as well as all iOS web browsers. A fast, open sourceweb browser engine. WebKit is the web browser engine used by Safari, Mail, App Store, and many other apps on macOS, iOS, and Linux. Get started contributing code, or reporting bugs. Web developers can follow development, check feature status, download Safari Technology Preview to …

DevOps

How to Install ISPConfig 3 on Ubuntu 18.04

ISPConfig is a well-known open-source web hosting control panel that allow us to manage services through a web browser. We can easily add Apache virtual host or Nginx server blocks, create/edit/delete databases, configure cron jobs, create email accounts, and much more. It is a free  alternative to paid control panels – you don’t have to …

Backend Javascript NodeJS

FastXmlParser – Faster xml library

Validate XML, Parse XML to JS/JSON and vice versa, or parse XML to Nimn rapidly without C/C++ based libraries and no callback To cover expenses, we’re planning to launch FXP Enterprise edition in parallel. Watch it for further updates, if you’re interested. Main Features Validate XML data syntactically Transform XML to JSON or Nimn Transform JSON back …

Testing Lambda function locally
Discussion

Testing Lambda function locally

Lambda-local lets you test NodeJS Amazon Lambda functions on your local machine, by providing a simplistic API and command-line tool. npm install -g lambda-local A simple way you can run lambda functions locally, without the need to create any special template files (like Serverless plugin and SAM requires), just adding the parameter –watch. It will raise a http server listening to …

Discussion Others

postman pre-script

Most developers are using post-man to check REST apis. Post-man is providing a lot of functionality. Pre-script is also one of them. We can define and update variables before send the request. it is useable to create a signature for REST api. https://learning.postman.com/docs/writing-scripts/pre-request-scripts/ You can check the guide. The script is based on javascript. So, …