├── .gitignore ├── .vscode └── settings.json ├── 01-esmodules ├── commonjs │ ├── currencyManager.js │ ├── index.html │ └── index.js └── esmodule │ ├── node │ ├── index.js │ ├── index.mjs │ └── package.json │ ├── shared │ ├── currencyManager.cjs.js │ ├── currencyManager.mjs │ └── package.json │ └── web │ ├── index.html │ └── index.mjs ├── 02-debugging └── index.mjs ├── 03-regex-5-tips ├── tip01.csv ├── tip02.js ├── tip03.js └── tip04.js ├── 05-nodejs-new ├── index.js └── timers.mjs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /01-esmodules/commonjs/currencyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/commonjs/currencyManager.js -------------------------------------------------------------------------------- /01-esmodules/commonjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/commonjs/index.html -------------------------------------------------------------------------------- /01-esmodules/commonjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/commonjs/index.js -------------------------------------------------------------------------------- /01-esmodules/esmodule/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/node/index.js -------------------------------------------------------------------------------- /01-esmodules/esmodule/node/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/node/index.mjs -------------------------------------------------------------------------------- /01-esmodules/esmodule/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/node/package.json -------------------------------------------------------------------------------- /01-esmodules/esmodule/shared/currencyManager.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/shared/currencyManager.cjs.js -------------------------------------------------------------------------------- /01-esmodules/esmodule/shared/currencyManager.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/shared/currencyManager.mjs -------------------------------------------------------------------------------- /01-esmodules/esmodule/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/shared/package.json -------------------------------------------------------------------------------- /01-esmodules/esmodule/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/web/index.html -------------------------------------------------------------------------------- /01-esmodules/esmodule/web/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/01-esmodules/esmodule/web/index.mjs -------------------------------------------------------------------------------- /02-debugging/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/02-debugging/index.mjs -------------------------------------------------------------------------------- /03-regex-5-tips/tip01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/03-regex-5-tips/tip01.csv -------------------------------------------------------------------------------- /03-regex-5-tips/tip02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/03-regex-5-tips/tip02.js -------------------------------------------------------------------------------- /03-regex-5-tips/tip03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/03-regex-5-tips/tip03.js -------------------------------------------------------------------------------- /03-regex-5-tips/tip04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/03-regex-5-tips/tip04.js -------------------------------------------------------------------------------- /05-nodejs-new/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/05-nodejs-new/index.js -------------------------------------------------------------------------------- /05-nodejs-new/timers.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErickWendel/lives-aquecimento03-javascript-expert/HEAD/README.md --------------------------------------------------------------------------------