create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// This scripts is a simple patch to force our react project to recompile after an typescript error was throwed and app had been frozen. | |
// More Details about the issue: https://github.com/facebook/create-react-app/issues/8667 | |
// The steps | |
// Save the script into your project's root folder | |
// yarn chokidar --dev | npm install chokidar --save-dev | |
// then run your app and in a another terminal run "node reload-force.js" | |
// NOTE: It needs be refactor in order to become more flexible, right now IT ONLY WORKS WITH App () | |
var fs = require("fs"); | |
var chokidar = require("chokidar"); |