Avatar

ntfreem

  • Total activity 193
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 2 users
  • Votes 0
  • Subscriptions 96

Activity overview

Latest activity by ntfreem
  • Avatar

    ntfreem created an article,

    yarn a simple demo

      1. Create a new folder mkdir ~/test   2. cd into the working directory cd ~/test   3. Create a package.json  vi ~/test/package.json   4. Add the following code  {"private":true,"workspaces": ["cl...

  • Avatar

    ntfreem created an article,

    Extracting logs from Lace extension and Lace service worker in Chrome Browser

        There are four types of log files to extract from Lace Chrome. This article explains how to access each of the log files, enable verbose logging, and export or save the log file to your local d...

  • Avatar

    ntfreem created an article,

    Yarn workspaces

      Yarn workspaces is a feature provided by the Yarn package manager and used in JavaScript Node.js development projects.   It is designed to support monolithic projects or repositories where you ha...

  • Avatar

    ntfreem created an article,

    Yarn package manager

    Yarn was developed by Facebook to address some of the early performance and dependency issues introduced by npm, offering an alternative.   Initially, many developers switched from npm to Yarn due ...

  • Avatar

    ntfreem created an article,

    Testing with Webpack

        1. Create a new folder.   2. cd into a new folder.   3. Verify both node.js and npm is installed.   4. Run the command npm init to initialize the dir.   5. In root dir create a new javascript s...

  • Avatar

    ntfreem created an article,

    What is Webpack?

    Webpack is a widely used open-source JavaScript module bundler. It's a tool that helps developers manage and bundle their JavaScript, CSS, and other assets for web applications. The main purpose of...

  • Avatar

    ntfreem created an article,

    npm a simple demo

      Prerequisites: Please review the following articles: Node.js a simple Demo   1. Verify node is installed node --versionv10.24.1   2. Verify that npm is successfully installed npm --version6.14.12...

  • Avatar

    ntfreem created an article,

    What is npm ? - Node Package Manager

      NPM stands for Node Package Manager. It is a software package manager that is widely used in the Node.js ecosystem. NPM allows developers to easily install, manage, and share third-party packages...

  • Avatar

    ntfreem created an article,

    Working with JavaScript in Chrome

    1. Create a new file called index.html and add the following html: <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0"...

  • Avatar

    ntfreem created an article,

    node.js a simple demo

      1. Verify node.js is successfully installed node --versionv10.19.0   2. Create a new JavaScript file touch date.js   3. Open test.js for editing vi date.js   4. Add the following code to test.js ...