Skip to content
View HiroshiHara's full-sized avatar
👽
👽
Block or Report

Block or report HiroshiHara

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. MyBodyWatch MyBodyWatch Public

    JavaScript

  2. Git_Tips.txt Git_Tips.txt
    1
    #### Git Tips ####
    2
    # if you cancel all staging files.
    3
    git reset HEAD
    4
    
                  
    5
    # if you revert all local changes.
  3. package.json for React + webpack + b... package.json for React + webpack + babel development. (WIP)
    1
    {
    2
      "name": "enter project name",
    3
      "version": "1.0.0",
    4
      "description": "",
    5
      "main": "index.js",
  4. .eslitrc.json for React development .eslitrc.json for React development
    1
    {
    2
      "parser": "babel-eslint",
    3
      "extends": [
    4
        "eslint:recommended",
    5
        "plugin:react/recommended",
  5. jest.config.js for personal devopment. jest.config.js for personal devopment.
    1
    module.exports = {
    2
      verbose: true,
    3
    };
  6. webpack.config.js for React developm... webpack.config.js for React development. (WIP)
    1
    // get *path* module from nodejs.
    2
    const path = require("path");
    3
    // resolve the *dist* path.
    4
    const outputPath = path.resolve(__dirname, "dist");
    5