Skip to content

Instantly share code, notes, and snippets.

View marsivo's full-sized avatar

ivomars marsivo

View GitHub Profile
@kitsuyui
kitsuyui / webpack.js
Last active January 21, 2023 04:47 — forked from sokra/webpack.js
// webpack is a module bundler
// This means webpack takes modules with dependencies
// and emits static assets representing those modules.
// dependencies can be written in CommonJs
var commonjs = require("./commonjs");
// or in AMD
define(["amd-module", "../file"], function(amdModule, file) {
// while previous constructs are sync
// this is async