Skip to main content

76 docs tagged with "Lib"

View All Tags

_.camelCase(string)

_.camelCase(string) is defined as: return string with camelCase (removes delimiters: whitespace, _ & -). Topics on: . Read more: JS, Lib, Lodash, String, Camel

_.chain(value)

_.chain(value) is defined as: return lodash wrapper instance over value input allowing method chaining. Topics on: . Read more: JS, Lib, Lodash | FullStack Wiki

_.concat(arr1, arr2)

_.concat(arr1, arr2). Topics on: !equivalent to using Destructuring using Spread Operator const arr3 = [...arr1, ...arr2], !equivalent to array.prototype.concat

_.escape(string)

_.escape(string) is defined as: return string convert into HTML Entity (& < > ' '). Topics on: . Read more: JS, Lib, Lodash, String, HTML Entity|FullStack Wiki

_.escapeRegExp(string)

_.escapeRegExp(string) is defined as: return string with escaped characters for reserved RegExp special characters (& $ . * + ? ( ) [ ] { } |). Topics on: . Rea

_.fill(arr)

_.fill(arr). Topics on: !equivalent to Array.prototype.fill(). Read more: JS, Lib, Lodash|FullStack Wiki by Roger J

_.filter(arr)

_.filter(arr). Topics on: !equivalent to arr.filter(el => el != 'some_comparison'). Read more: JS, Lib, Lodash|FullStack Wiki by Roger J

_.flatten(arr)

_.flatten(arr). Topics on: !equivalent to arr.flat(). Read more: JS, Lib, Lodash|FullStack Wiki by Roger J

_.kebabCase(string)

_.kebabCase(string) is defined as: return string with kebab-case. Topics on: . Read more: JS, Lib, Lodash, String, Kebab Case|FullStack Wiki by Roger J

_.uniq(array)

_.uniq(array) is defined as: to return new duplicate-free Array. Topics on: !equivalent to [...new Set(Arr)]. Read more: JS, Lib, Lodash, Array | FullStack Wiki

_.uniqWith()

_.uniqWith() is defined as: to return new duplicate-free Array with additional callback to control equality comparison. Topics on: . Read more: JS, Lib, Lodash

!hood

!hood. Topics on: built on Mozilla Rhino engine based on Java. Read more: JS, Lib, JS Doc|FullStack Wiki by Roger J

'lib': []

'lib': [] is defined as: to set which default objects & features TSC knows. Topics on: 'lib': [] defaults to JS Library & Web API for Browser Runtime, 'target':

@faker-js/faker

@faker-js/faker is defined as: Lib to generate random placeholder content of different types. Topics on: original faker-js library bombed by original author, in

@reduxjs/toolkit

@reduxjs/toolkit is defined as: Official Opinionated redux Toolset Lib with simplified improved syntax. Topics on: Thoughts on RTK Migration, @reduxjs/toolkit/q

AMD Module

AMD Module is defined as: Async Module Definition format used in Browser. Topics on: Export AMD Module. Read more: JS, Lib, Module, AMD Module, Async, Browser

Asynchronous Loading

Asynchronous Loading. Topics on: Top-Level Await for Module. Read more: JS, Lib, Module, Loading Module Cycle, Asynchronous Loading|FullStack Wiki by Roger J

Browser Module Path

Browser Module Path is defined as: to import Module via Module Specifier to point to CDN URL link - to allow immediate Execution in Browser w/o Bundler. Topics

Bundler

Bundler is defined as: Dev tool to combine Modules into fewer file to optimize for Browser. Topics on: JS Bundle, Dead Code Elimination. Read more: JS, Lib, Mod

Combo Import

Combo Import. Topics on: . Read more: JS, Lib, Module, ES Module, Import ES 6 Modules|FullStack Wiki by Roger J

CommonJS

CommonJS is defined as: (legacy) Module format (originally) for Servers (Node.js). Topics on: CommonJS Modules are loaded Syncly, exports, Import CommonJS Modul

Cyclic Import

Cyclic Import. Topics on: Live Immuatable View. Read more: JS, Lib, Module, ES Module, Import ES 6 Modules|FullStack Wiki by Roger J

Cyclical Dependency

Cyclical Dependency. Topics on: . Read more: JS, Lib, Module, Dependency|FullStack Wiki by Roger J

Dead Code

Dead Code is defined as: unused Source Code. Topics on: . Read more: JS, Lib, Module, Bundler, Dead Code Elimination, Dead Code, Source Code | Full-Stack Wiki

Dead Code Elimination

Dead Code Elimination is defined as: (process) to remove unused Source Code. Topics on: Bundler to enable faster loading & allow Dead Code Elimination, Dead Cod

Default Import

Default Import. Topics on: . Read more: JS, Lib, Module, ES Module, Import ES 6 Modules|FullStack Wiki by Roger J

Dependency

Dependency is defined as: extra external code that a project/Source Code depends on to work. Topics on: Cyclical Dependency. Read more: JS, Lib, Module, Depende

Documentation Generator

Documentation Generator is defined as: Dev tool to autogen API docs. Topics on: Can auto-analyze code and generate HTML with all docs, docs key terms (ie namesp

downsides of frameworks

downsides of frameworks. Topics on: adds overhead which wil run slower than vanilla JS, can be restrictive with less control over app if heavily opinionated. Re

Electron

Electron is defined as: JS Framework to build desktop App with JS, HTML & CSS, embed in Chromium & Node.js. Topics on: Electron is FOSS & cross platform. Read m

Empty Import

Empty Import. Topics on: . Read more: JS, Lib, Module, ES Module, Import ES 6 Modules|FullStack Wiki by Roger J

ES Module

ES Module is defined as: (default) built-in JS module format. Topics on: ES Modules supersede all previous module formats (CommonJS & AMD Module), ES Module hav

ES Module Standard

ES Module Standard. Topics on: ES Module Syntax, ES Module Semanatics, ES Module Loader API. Read more: JS, Lib, Module, ES Module|FullStack Wiki by Roger J

export

export is defined as: JS Keyword to export Module. Topics on: . Read more: JS, Lib, Module, ES Module, JS Keyword|FullStack Wiki by Roger J

Export AMD Module

Export AMD Module. Topics on: . Read more: JS, Lib, Module, AMD Module|FullStack Wiki by Roger J

Export Clause

Export Clause. Topics on: Inline vs Export Clause. Read more: JS, Lib, Module, ES Module|FullStack Wiki by Roger J

Export CommonJS Module

Export CommonJS Module. Topics on: . Read more: JS, Lib, Module, Common JS|FullStack Wiki by Roger J

export default

export default is defined as: Named Export with default name. Topics on: default is illegal Identifier for Variable but can be used as export name (or as Proper

exports

exports. Topics on: exports.info, exports.error. Read more: JS, Lib, Module, Common JS|FullStack Wiki by Roger J

Fuse.js

Fuse.js is defined as: Lib for Thin Client Fuzzy Search (for smaller in-file datasets). Topics on: . Read more: JS, Lib, Thin Client, Fuzzy Search |web-Dev Wiki

import

import is defined as: JS Keyword Declaration to import live read-only views on exports. Topics on: live bindings, binding, import.meta. Read more: JS, Lib, Modu

Import CommonJS Module

Import CommonJS Module. Topics on: . Read more: JS, Lib, Module, Common JS|FullStack Wiki by Roger J

Import ES6 Modules

Import ES6 Modules. Topics on: Named Import, Namespace Import, Default Import, Combo Import, Empty Import, Cyclic Import. Read more: JS, Lib, Module, ES Module,

import.meta

import.meta is defined as: return Object with Metadata for current Module. Topics on: import.meta.url. Read more: JS, Lib, Module, Import, Object, Metadata|Wiki

jQuery

jQuery is defined as: Lib to simplify DOM API manipulation via $ wrapper around HTML. Topics on: jQuery creates a wrapper around HTML to access it via $, jQue

JS Framework

JS Framework is defined as: guidelines to design & structure JS App. Topics on: just as there are many programming languages, there are many programming framewo

JS Library

JS Library is defined as: core 'vanilla' JS Lib. Topics on: . Read more: JS, JS Concepts, Java Script Runtime, JS Library, Lib|FullStack Wiki by Roger J

JSDoc

JSDoc is defined as: Markup Lang to add inline documentation to JS Source Code. Topics on: !deprecated by TSDoc, !version current JSDoc 3, !hood, Documentation

JSDoc Syntax

JSDoc Syntax. Topics on: must begin with /**, must add * for each line, must end with */, example. Read more: JS, Lib, JS Doc|FullStack Wiki by Roger J

JSDoc tag

JSDoc tag. Topics on: Documentation tags, @author, @constructor, @depecated, @returns. Read more: JS, Lib, JS Doc|FullStack Wiki by Roger J

KaTeX

KaTeX is defined as: LaTeX Superset to typeset Math notation for Web Page. Topics on: Lib for math typesetting/rendering on web, Katex Fractions. Read more: JS,

Lib

Lib is defined as: Library Collection of prewritten Source Code to reuse in App. Topics on: @faker-js/faker, a collection of function to be used in project to p

Loading Module Cycle

Loading Module Cycle. Topics on: Module Import Cycle, Synchronous Loading, Asynchronous Loading. Read more: JS, Lib, Module, Loading Module Cycle|FullStack Wiki

localForage

localForage is defined as: Lib extends localStorage with async access. Topics on: falls back on localStorage in Browser if no indexedDB found, use to create new

lodash

lodash is defined as: Lib extends JS with useful utility functions. Topics on: follows a Functional Programming Paradigm, imported with _ namespace, _.concat(ar

Module

Module is defined as: JS file exports Source Code. Topics on: Script, CommonJS, module.exports, require(), ES Module, AMD Module, Loading Module Cycle, Module S

Module Evaluation

Module Evaluation is defined as: Execute Module body; children evaluated before parents. Topics on: . Read more: JS, Lib, Module, Loading Module Cycle, Module I

Module File Extensions

Module File Extensions. Topics on: .mjs, .cjs, !cf .js which can be either ES Module or CommonJS, Node.js prefers .mjs ext for ES Module - why?. Read more: JS,

Module Import Cycle

Module Import Cycle is defined as: After parsing, Module are set up in 2 phases of Module Instantiation & Module Evaluation. Topics on: Module Instantiation, Mo

Module Instantiation

Module Instantiation is defined as: Every Module visited to connect imports to exports ; must instantiate children before parents. Topics on: . Read more: JS, L

Module Specifier

Module Specifier is defined as: string to identify & point to Module location. Topics on: Relative Path, Absolute path, URL, Bare Path, Deep Import path. Read m

Named Export

Named Export. Topics on: Each module can have ≥0 named exports. Read more: JS, Lib, Module, ES Module, Named Export|FullStack Wiki by Roger J

Named Import

Named Import. Topics on: . Read more: JS, Lib, Module, ES Module, Import ES 6 Modules|FullStack Wiki by Roger J

Namespace Import

Namespace Import is defined as: import Object under single name to contain all named exports as properties. Topics on: . Read more: JS, Lib, Module, ES Module,

npmjs

npmjs is defined as: npm registry Software Repository to share FOSS JS Lib. Topics on: . Read more: JS, Nodejs, Npmjs, Software Repository, FOSS, Lib | Dev Wiki

Polyfill

Polyfill is defined as: Code to emulate native Web Platform feature for backwards compatibility with older Browser. Topics on: Speculative Polyfill, Replica, Po

React

React is defined as: Minimalist Lib to build App UI via Declarative Component Based Architecture. Topics on: React Concepts, React API, React Stack, React Snipp

react-router-dom

react-router-dom is defined as: React Lib for Routing Primitive to Client Routing & Server Side Render in Declarative Composable way. Topics on: react-router, R

Replica

Replica is defined as: Local Lib to reproduce Web API functionality. Topics on: . Read more: JS, Lib, Module, Polyfill, Replica, Web API|FullStack Wiki by Roger

require()

require() is defined as: . Topics on: . Read more: JS, Lib, Module, Require|FullStack Wiki by Roger J

Script

Script is defined as: Source Code fragment run in Global Scope by Browser. Topics on: Script were precursors of Module, before ES6, Module not added - only Scri

Svelte

Svelte is defined as: JS Framework to serve compile-time UI with minimal 'surgical' DOM update for faster runtime. Topics on: Svelte Kit. Read more: JS, Lib, JS

Top-Level Await for Module

Top-Level Await for Module. Topics on: . Read more: JS, Lib, Module, Loading Module Cycle, Asynchronous Loading|FullStack Wiki by Roger J

Tree Shaking

Tree Shaking is defined as: (process) to remove Dead Code from final Bundler. Topics on: . Read more: JS, Lib, Module, Bundler, Dead Code Elimination, Tree Shak

Zero Deps

Zero Deps is defined as: of vanilla (JS/Programming Language/Executable) Lib to run out-of-box w/o req external Dependency. Topics on: . Read more: JS, Lib, Zer