Avatar

Neville Freeman

  • Total activity 182
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 2 users
  • Votes 0
  • Subscriptions 101

Activity overview

Latest activity by Neville Freeman
  • Avatar

    Neville Freeman created an article,

    How to capture console and network logs in Chrome

      Capturing console and network logs in the Chrome browser   Capturing Console logs in Chrome From the drop-down menu in Chrome, select More Tools and then Developer Tools (Ctrl+Shift+I or F12),...

  • Avatar

    Neville Freeman created an article,

    Reinstall Daedalus on Windows 10 and Windows 11

      Steps to fully uninstall Daedalus on Windows 10 and Windows 11 These steps will completely remove Daedalus from your system including the chain folder meaning you will need to restore your wallet...

  • Avatar

    Neville Freeman 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

    Neville Freeman 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

    Neville Freeman 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

    Neville Freeman 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

    Neville Freeman created an article,

    Testing with Webpack

        1. Create a new folder called webpack.   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. (Select enter for each of t...

  • Avatar

    Neville Freeman 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

    Neville Freeman 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

    Neville Freeman 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...