Jarxi

Bolderdash

[React] Redux reducer structure

Redux Reducer StructuresReference[Link] (https://medium.com/javascript-in-plain-english/redux-without-switch-cases-and-some-other-tips-6a3d27157da6) ...

[MEAN] How to use httpOnly JWT with React and Node

How to use httpOnly JWT with React and NodeIt is unsafe to store JWT in either localStorage or cookie, although many people do this.HttpOnly cookie means frontend javascript is not able to read or ......

[ES6] ES6 Syntax

ES6 SyntaxNamed Export vs. Default ExportNamed Export123456// teacher.jsexport class Teacher { constructor(name){ super(name) }} 12// index.jsimport { Teacher......
ES6

[Docker] Docker For Beginners

Docker for BeginnersContainer Container is a running environment for IMAGE port binded: talk to application running inside of container, Port 5000 virtual file system contains application image: po......

[Elastic Beanstalk] Springboot Gradle Docker Elastic Beanstalk

Deploy Dockered Gradled Spring Boot Application to Elastic BeanstalkSource code After download, change /build/docker/Dockerfile first line to FROM frolvlad/alpine-java PreparationJava 8Docker downl......

[React] React Notes

React NotesTools React Image Upload to S3 part 1 React Image Upload to S3 part 2 Eslint PropTypes.object is not allowed React RoadmapReact Portals Used when you need the child to visually “break ......

[DraftJS] DraftJS RichText and Plugins

DraftJS Official Documentation Plugins SideToolBar plugin Side Tool Bar button position is off: set client/node_modules/draft-js-side-toolbar-plugin/lib/components/BlockTypeSelect/index.js svg vi......

[Elastic Beanstalk] Deploy Angular & Node to Elastic Beanstalk

Deploy Angular & Node to Elastic BeanstalkThe default port for EB is 8080. Node will be started at port 8080.It’s important to point Angular to port 8080. In environment.prod.ts, adds 1234expo......