Skip to content

Instantly share code, notes, and snippets.

BEM Cheatsheet

BLOCK

Block encapsulates a standalone entity that is meaningful on its own.

While blocks can be nested and interact with each other, semantically they remain equal; there is no precedence or hierarchy.

Holistic entities without DOM representation (such as controllers or models) can be blocks as well.

@Kodeeshwarar
Kodeeshwarar / NPM Scripts
Created March 28, 2021 12:05 — forked from meetKowshik/NPM Scripts
All npm scripts for development with sass
/*npm install*/
first initialize npm with package.json
npm init
then install the node sass
npm install node-sass --save-dev
if already have the package.json initialized with node-sass then just run
npm install
for install live server globally