Skip to content

Instantly share code, notes, and snippets.

View mikoloism's full-sized avatar
🌱

mikoloism mikoloism

🌱
View GitHub Profile
@mikoloism
mikoloism / nodemailer-checklist.md
Last active June 4, 2021 14:09 — forked from jonathandavidpollock/nodemailer.js
how use nodemailer (checklist)

nodemailer checklist

Install

npm install nodemailer

Coding

@mikoloism
mikoloism / deploy-create-react-app-with-gh-pages.md
Last active June 4, 2021 13:44
How deploy create-react-app with gh-pages

How deploy create-react-app with gh-pages

gh-pages is a npm packge help developers to deploy they app on github-pages

steps

1. install

TIPS : this installation should be on home path folder (cd ~ or cd)

npm i -g create-react-app
@mikoloism
mikoloism / react-redux-structure-[method-1].md
Last active June 4, 2021 23:45
React Redux Structure [method-1]

React Redux Structure [Method-1]

i try to make code simple for scalable and resuable structure ❤️

Install

1. create-react-app

npx create-react-app {APP_NAME} --use-npm

then, we should change currect directory with

@mikoloism
mikoloism / react-redux-structure-[method-2].md
Last active July 9, 2021 04:05
react redux structure [method-2]

React Redux Structure [Method-2]

method-1: available in here ❤️

Install

1. create-react-app

npx create-react-app {APP_NAME} --use-npm

@mikoloism
mikoloism / calendar-generator.md
Last active July 2, 2021 18:14
Calendar Generator

Calendar Generator

list of way, we can generate calendar (month, week, or other views)

@mikoloism
mikoloism / _yek-sass-variables.scss
Last active June 10, 2021 04:19
useful sass/scss variable
/* variables
-------------------*/
$yek-v-space: 4px;
$yek-v-space-2x: 8px;
$yek-v-space-4x: 16px;
$yek-v-space-8x: 32px;
$yek-v-space-16x: 64px;
$yek-v-space-32x: 128px;
$yek-v-space-small: 32px;
$yek-v-space-medium: 40px;
@mikoloism
mikoloism / npm-init-defaults.sh
Last active April 2, 2023 13:47
my-npm-learned
npm config set init-author-name "<YOUR_NAME>"
npm config set init-author-email "<YOU_EMAIL>"
npm config set init-author-url "<YOUR_WEBPAGE_URL>"
npm config set init-version "0.0.1"
npm config set init-license "MIT"

All In One Webpack and Loaders

Steps

Installing

TIPS : -g flags required sudo

  • webpack npm install -g webpack webpack-cli or npm install --save-dev webpack
@mikoloism
mikoloism / react-component-package.md
Created June 16, 2021 17:53
how create npm package from react-components

How create npm package from React components

Structur

  • src/
    • components/
      • COMPONENT_NAME/
        • COMPONENT_NAME.jsx // or js
        • index.js
  • stories