2020年2月26日 星期三

[Design Pattern] Commonly Design Pattern at Front-End

Creational Pattern
  • Constructor
  • Module
  • Factory
  • Singleton
Structural Pattern
  • Decorator
  • Facade
  • Flyweight
Behavioral Pattern
  • Command
  • Mediator
  • Observer

2020年2月23日 星期日

[Javascript] What is Prototype?

Function's prototype

It is the object instance that will become the prototype for all objects created using this function as a constructor.

Object's prototype

It is the object instance from which the object is inherited.

2020年2月18日 星期二

[Docker] Common Command

1.confirm which images that we have
docker ls

2.install the specific image to container
docker container run -d --name "containerName" -p 8080:8080 "ImageName"

3.when you wanna close container
docker stop "containerName"

4.restart
docker container start "containerName"