How to install and use NVM (Node Version Manager) (2023)

HimNode Version Manager (NVM)is an open source version manager forNode.js (Nodo). NVM is easy to understand and works in any POSIX compatible shell (e.g. sh or bash). NVM allows you to easily install and manage different versions of Node and switch between them via the shell. This guide describes how to install and use NVM to connect different versions of Node.

Benefits of the MRV

Nodes change quickly and testing applications with different versions is often difficult. Because NVM allows for quick and effortless switching between versions of Node, it's much easier to test version compatibility and upgrades with different libraries. NVM stores node versions and associated modules in your home directory, i.esudodoes not have to be used. NVM also simplifies the install and build process by eliminating the need to obtain node releases directly from the distribution channel.

A summary of the NVM installation and configuration process

A full NVM installation consists of the following general steps. Each step is described below.

  1. Install and configure NVM
  2. Using NVM to install Node
  3. Using NVM to run node
  4. Create NVM aliases
Install NVM

These instructions show how to install NVM and are generic to most Linux distributions, although some of the.bashrcInstructions may vary slightly in different shells. You can install and use NVM regardless of whether you already have Node installed. NVM changesAwayVariables to select different versions of Node to make it work with existing installations.

  1. Install NVM with aReisÖwget.

    How to install NVM withReis, run the following command:

    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | intention

    How to install NVM withwget, run the following command:

    wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | intention
    Use

    You can also download and install NVM using GIT or manually. See the GIT section ofNVM documentation guidefor detailed instructions.

  2. Source for new instructions added to NVM.bashrcduring the installation process. You can log out and back in to the shell console, or get yours manually.bashrcProcess. This file is almost always located at the root of your home directory.

    Font ~/.bashrc

    As a workaround, you can run the new instructions in the same console to apply them immediately.

    export NVM_DIR="$HOME/.nvm"[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
    Use

    NVM uses the following environment variables. We recommend leaving them at their default settings. Be careful if you decide to change them for any reason.

    (Video) Node Version Manager Windows 10. Easy way to switch Node version. Install nvm.

    • NVM_DIR - NVM installation directory.
    • NVM_BIN: The location of the node thatNode-Paketmanager(NPM) and global packages are installed for the active version of Node.
    • NVM_INC: The directory for node include files (for building C/C++ plugins).
    • NVM_CD_FLAGS: The flags used to maintain compatibilitye.g.
    • NVM_RC_VERSION: The version of the.nvmrcfile (if used).
  3. Confirm that you have successfully installed NVM.

    Befehl -v nvm

    If the installation was successful, NVM will returnnvm. when you see the messagenvm: Command not found, confirm that the original installation completed successfully, and then repeat step 2 of this section to complete the.bashrcoffice hours.

    nvm
  4. You can confirm the running NVM version with the following command:

    nvm --version
Use NVM to install the node

NVMdo not install pcThe command loads, compiles, and installs the specified version of Node. You can install as many versions of Node as you like.

  1. To install the latest version of Node, run:

    nvm-Installationsknoten

    After a successful installation, NVM displays information about the installation.

    Now with Node v15.5.1 (npm v7.3.0) Create a default alias: default -> node (-> v15.5.1)
    Use

    When used in an NVM commandesis an alias for the latest version of Node. The first version of Node you install automatically becomes the default version. A new shell instance is created with the current node version set toBy default. the pseudonymSystemrefers to the version installed on the node system (if any).

  2. To install a specific version of Node, specify the major or minor version number. You can view a list of all available node versionsls-remotoDomain.

    nvm ls-control remoto

    NVM displays a long list of available versions in the following format:

    v5.12.0v6.0.0
  3. Install any additional versions of Node that you want to use. You can specify a major or minor version of Node to install. When you install a new version of Node, NVM immediately starts using it and marks it as the current version.

    nvm install 13.10.1 # Specify minor version nvm install 14 # Specify major version only
    Use

    If you only provide the major version number for a node version, NVM installs the latest version of that version. You can determine the latest version of each version of the outputnvm ls-control remoto. The node also shows the exact version you selected after installation (e.g.Now use node v14.15.4). If you specify an unavailable node version, NVM responds with the error messageVersion '15.0.2' not found: Try 'nvm ls-remote' to find available versions.

Show node versions with NVM
  1. Check all installed versions of Node with thelsDomain.

    (Video) How to install and use Node Version Manager (NVM)

    nvm ls

    NVM returns a list of all node versions and aliases, along with an arrow showing the current version. Here is an example output:

    v13.10.1v14.15.4-> v15.5.1default -> node (-> v15.5.1)iojs -> N/A (default)node -> stable (-> v15.5.1) (default) stable -> 15, 5 ( -> v15.5.1) (Standard)
The NVM usage command

To select a different version of Node, use theuso nvmDomain. Enter the node version number (major or minor) or an alias such ases.

no use nvm

Ö

what NVM 14

NVM confirms that you are now using the new version.

Now use node v14.15.4

You can also confirm the current version of Node withnvm real.

nvm real

NVM returns the current version number again.

v14.15.4
Use

You can also confirm the currently used node versionor -v. To switch back to the system version of Node, run the commandnvm usage system.

NVM: switch node version

To switch to a different version of Node and immediately open a Node console, usenvm run. HimrunThe command is very similar touso nvmin all other Interests.

nvm runtime node

NVM confirms that the selected version of Node is now running and returns a Node.

Running Node v15.5.1 (npm v7.3.0) Welcome to Node.js v15.5.1. Type ".help" for more information.>
Create NVM aliases

You may find it convenient to refer to a version of Node with a different or more memorable name. NVM already provides some predefined patterns like e.gBy defaultjes, which refers to the latest version. But you can use themPseudonymto change the value of an existing alias or create a new alias.

  1. Use oalias nvmCommand to change the default version of the node. follow thatPseudonymkeyword withBy defaultAlias ​​and the new version of Node for reference.

    nvm aliases 14 by default

    NVM passes the new value to the alias.

    Standard -> 14 (-> v14.15.4)
  2. Use oalias nvmCommand to create a new alias. The following example defines a new onemaintenanceAlias ​​als Node-Version 13.10.1.

    (Video) Install (NVM) Node Version Manager Mac

    Alias ​​maintenance nvm 13.10.1

    NVM commits the new alias.

    Maintenance -> 13.10.1 (-> v13.10.1)
  3. With you can display all new and old aliasesnvm lsDomain.

    nvm ls
Use NVM to install the latest version of LTS Node.js

Each version of Node.js can be in one of the following three release stages: Current, Long Term Active Support (LTS), and Maintenance. The LTS release version of Node.js includes new features, bug fixes, and updates approved as part of the release pipeline. This section shows how to install the latest LTS version of Node.js using NVM.

Use the following command to install the latest LTS version of Node.js on your system:

install nvm --lts

You should see the following output:

Installing the latest version of LTS. Downloading and installing Node v16.15.1... https://nodejs.org/dist/v16.15.1/node-v16.15.1-darwin-x64.tar.xz Downloading...#### ### # # ############################################### ## # # ########################################### 100.0% checksum calculate with shasum - a 256 checksums matched! Now with node v16.15.1 (npm v8.11.0)

After the installation completes, NVM will automatically switch to the latest LTS version of Node.js that you just installed.

To install a specific LTS release series (a version other than the latest version), use the- esArgument along with the line name of the version you want to install.

nvm install --lts=argon

The sample command installs the Node.js LTS "argon" line. refer toNode.js version pagefor LTS version names.

Use the following command to switch to the latest LTS version of Node.js that is already installed on your system:

use nvm --lts
Now with node v16.15.1 (npm v8.11.0)

Use the following command to switch to a specific LTS version of Node.js:

nvm usa lts/argon

The example command switches to the Node.js LTS "argon" line.

Now with node v4.9.1 (npm v2.15.11)
Additional NVM features

Although NVM is very easy to use, it also offers some advanced features. see theNVM GitHub pagefor a complete list of all advanced topics.

  1. With NVM you can import packages from a previous version of Node. HimInstall NVMThe command can be used with the optional command-reinstall-packages-from=Flag to install a new version of Node with packages from a previous version. The following command installs the latest version of Node, but also reinstalls the Node packages.By defaultversion of Node and link them.

    nvm-Installationsknoten --reinstall-packages-from=default
    Use

    Reinstalling packages does not update the NPM version.

    (Video) Install NVM on Windows (Node Version Manager)
  2. NVM allows you to define custom colors to represent the different versions and aliases of Node. These colors are defined in theNVM GitHub page. use the commandnvm set-colors <color key>. If you add the- No colorsmarks a command, the information is displayed in black and white.

    nvm specifies rgBcm colors
  3. You can also specify a default node version number within the.nvmrcProcess. This file can be in the root directory or any parent directory. The specified version in.nvmrcUsed when no version is specified on the command line.

Use NVM to uninstall the node

NVM allows you to uninstall versions of Node that you no longer need.

  1. Run the commandNVM uninstallwith the node version you want to remove. You cannot remove a version you are currently using, so you must first switch to a different version.

    uninstall nvm 13.10.1

    NVM confirms that the node version has been removed.

    Uninstalled node v13.10.1
Steps to uninstall NVM

If you no longer want to use NVM, you can uninstall it withgo downstairsDomain.

  1. Disable NVM with thedisable nvmDomain. This will clear all path variables.

    disable nvm
  2. Uninstall NVM.

    download nvm
  3. wash your.bashrcfile by removing the following lines:

    export NVM_DIR="$HOME/.nvm"[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This NVM will be loaded
Use

If you just want to go back to using the system version of Node, you don't need to uninstall NVM. If so, run the commandnvm usage system.

More information

For more information on this topic, see the following resources. While they are provided in the hope that you will be helpful, please note that we cannot guarantee the accuracy or timeliness of externally hosted materials.

This page was originally posted on

(Video) Installing Nodejs & NVM on Windows

FAQs

How do I use nvm to manage Node versions? ›

How to Use NVM on Windows 10
  1. To install the latest version of Node, run nvm install latest .
  2. To install the LTS version of Node, run nvm install lts .
  3. To install a specific version of Node, you need to run nvm list available first so you can see the versions of Node that are available.
Aug 11, 2022

How do I install and run nvm? ›

How to Install NVM on Windows
  1. Click on "Download Now" In the nvm-windows repository Readme, click on "Download Now!": ...
  2. Install the .exe file of the latest release. In the latest release (which as of the time of writing this is 1.1.9), you'll find different assets. ...
  3. Complete the Installation Wizard.
Sep 9, 2022

How do I use nvm manager? ›

Install nvm
  1. Download the install script. Using curl, or wget, download the installation script. ...
  2. Run the install script. Run the install script with bash . ...
  3. Restart your terminal. ...
  4. Verify it worked. ...
  5. See what it does.

How to install multiple Node versions using nvm? ›

To switch through installed versions, nvm provides the nvm use command. This works similarly to the install command. So, you need to follow this by a version number or an alias. When switching to a different version, nvm will make the node instance in your terminal symlink to the proper Node.

How to use nvm to install npm? ›

It can be installed manually, if you prefer. Open the terminal and run the nvm list available command to see a list of Node versions that are available to download and install. Run the nvm use command, followed by the version number of Node you want to use (e.g. nvm use 16.9. 1 ) to use a specific version.

How do I know if nvm is installed? ›

Consult the GIT section of the NVM Documentation Guide for detailed instructions.
  1. Source the new instructions NVM added to . bashrc during the installation process. ...
  2. Confirm you have successfully installed NVM. command -v nvm. ...
  3. You can confirm the version of NVM that is running with the following command: nvm --version.
Jan 12, 2021

How to install npm and Node? ›

Visit the official node. js site https://nodejs.org/en/download/ and click on Windows installer to download the necessary software in your system. The installer contains the NPM package. Based on the system you want to install, choose 32-bit installer or 64-installer and proceed.

How do I activate nvm? ›

Setting Up NVM
  1. Step 1: Install NVM. The first step is simplest: just install NVM with the curl or wget command provided in the documentation . ...
  2. Step 1.5 Verify NVM in the Command Line. Close out your terminal, open a new window and type: ...
  3. Step 2: Add the NVM Directory Paths to Your Shell Profile (When Needed)
Mar 3, 2019

How do I manage node version? ›

Managing Node versions
  1. Installation: Open up your terminal, paste the following code and hit enter: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash.
  2. Loading NVM: Just paste this command on your terminal and hit enter export NVM_DIR="$HOME/.nvm"

How does node version manager work? ›

NVM allows users to:
  1. Locally download any of the remote Long Term Support (LTS) versions of Node. js with a simple command.
  2. Easily switch between multiple versions of Node. js, right from the command line.
  3. Set up aliases to switch between different downloaded versions of Node. js with ease.

How to install using npm? ›

To install a package, npm uses the following algorithm:
  1. load the existing node_modules tree from disk.
  2. clone the tree.
  3. fetch the package.json and assorted metadata and add it to the clone.
  4. walk the clone and add any missing dependencies.
  5. dependencies will be added as close to the top as is possible.
Jun 14, 2018

Can I have 2 versions of node installed? ›

Node Version Manager is an open-source shell utility we can use to manage multiple Node. js versions on a single machine. Of course, we can install multiple Node. js versions without the use of any utility whatsoever.

How do I manage multiple node versions? ›

Manage Multiple Node Versions
  1. Installing Node Version Manager. ...
  2. Setting Run Time Configuration. ...
  3. Installing Automatic Node Version Switching. ...
  4. AVN Updates Bash Profile. ...
  5. Setting Automatic Node Version. ...
  6. Evaluate Bash Profile.

How do I run two node versions? ›

How To Run Multiple Versions of Node. js with Node Version Manager
  1. Step 1 — Getting Started. ...
  2. Step 2 — Installing Multiple Node. ...
  3. Step 3 — Listing Installed Node. ...
  4. Step 4 — Setting a Default Node. ...
  5. Step 5 — Switching Between Node. ...
  6. Step 6 — Removing Node. ...
  7. Step 7 — Unloading Node Version Manager.
Jul 26, 2019

Do I need nvm if I have npm? ›

We strongly recommend using a Node version manager like nvm to install Node. js and npm. We do not recommend using a Node installer, since the Node installation process installs npm in a directory with local permissions and can cause permissions errors when you run npm packages globally.

What is the difference between Node and nvm? ›

The main advantage of n's approach to managing Node. js releases compared to NVM is that global npm packages are not affected when you switch between different versions of Node. On the other hand, NVM lets you use different Node. js versions in different terminals through its nvm use command, while n does not.

Does nvm also install npm? ›

I've been using NVM to install the latest versions of Node.js for my Node.js work. It works totally fine for installing separate versions and switching between them. It also installs the latest version of NPM within each local .../bin folder along with the Node.js binary.

How to install Node specific version npm? ›

For npm install specific version, use npm install [package-name]@[version-number]. Use npm view [package-name] version to know the specific latest version of a package available on the npm registry. Use npm list [package-name] to know the specific latest version of an installed package.

How to install Node 14 using nvm? ›

How to Install and Manage Node. js via NVM
  1. Step 1 – Install NVM. NVM is a command-line utility to install and manage Node. ...
  2. Step 2 – Find Available Node. js Version. ...
  3. Step 3 – Installing Node. js with NVM. ...
  4. Step 4 – Set A Default Version. ...
  5. Step 5 – Run Application with Specific Version. ...
  6. Step 6 – Remove Unused Node.
Dec 15, 2022

What is difference between npm and nvm? ›

NVM is a node. js version manager. It provides easy installation, switching between versions and retains globally installed packages for each version. NPM is a package manager, which help you install libraries, plugins, frameworks and applications.

How do I know if node is installed? ›

To see if Node is installed, open the Windows Command Prompt, Powershell or a similar command line tool, and type node -v . This should print the version number so you'll see something like this v0.10.35 . Test NPM.

How do I see node versions in nvm? ›

PS: The command nvm ls-remote will give you a live list of all node versions available to nvm.

How to check list of node versions? ›

Step 1: check your nodejs version using node –version command. Step 2: go to browser and search for nvm for windows. This is the nodejs version manager for windows that is a pre-requisite to download followed by installing the exe file. Step 3: Check number of node versions installed on terminal using nvm list command.

What should I install first npm or node? ›

Installing Node

In order to use Express you will first have to install Nodejs and the Node Package Manager (npm) on your operating system. The following sections explain the easiest way to install the Long Term Supported (LTS) version of Nodejs on Ubuntu Linux 20.04, macOS, and Windows 10.

What is the difference between node and npm? ›

node is a framework that can run JavaScript code on your machine while npm is a package manager. Using npm we can install and remove javascript packages also known as node modules. Now, it is not a rule that you should use npm to install and remove node modules.

What is the command to install Node? ›

In a web browser, navigate to https://nodejs.org/en/download/. Click the Windows Installer button to download the latest default version. At the time this article was written, version 10.16.0-x64 was the latest version. The Node.js installer includes the NPM package manager.

Where do I install nvm? ›

Go to your Downloads folder on Windows, and unzip nvm-setup. zip file and double click on nvm-setup . Installation Wizard.

How do I make Node default in nvm? ›

nvm alias default 6.11.5 if you want it pegged to that specific version. You can also do nvm alias default 16 or nvm alias default node . Save this answer.
...
  1. Is there any way to target the latest version ? ...
  2. Try with nvm alias default lts/* ...
  3. Note you will need to install lts/fermium first.

What is the latest version of Node nvm? ›

The latest version of nvm is 0.39. 2 , and it can be installed by curl or wget command: The script, install.sh , clones the nvm repository to ~/.

How do I update my nvm version? ›

Here's the steps to upgrade NodeJs version:
  1. Run nvm install node (will install latest version). ...
  2. Run nvm use <node_version> to use it.
  3. If you want to make it the default version on your machine, run nvm alias default <node_version> .

Do I need to uninstall Node before installing new version? ›

Before installing the utility, it is recommended to remove all the existing versions of Node.

How do I list Node versions installed? ›

The commands I use the most:
  1. nvm list. Lists the installed versions of node. The selected version is shown with '*'
  2. nvm list available. Shows a list of available Node versions to download.
  3. nvm install <version> This command lets you install different Node versions. ...
  4. nvm use <version> Specify what version of Node to use.
Mar 24, 2022

What is the most popular node version manager? ›

While windows-nvm is currently the most popular version manager for node, there are alternatives to consider: nvs (Node Version Switcher) is a cross-platform nvm alternative with the ability to integrate with VS Code.

How do I get node to work? ›

Installation of NodeJS and NPM is straightforward using the installer package available at NodeJS official web site.
  1. Download the installer from NodeJS WebSite.
  2. Run the installer.
  3. Follow the installer steps, agree the license agreement and click the next button.
  4. Restart your system/machine.
Jan 10, 2019

How do I run a node app? ›

The usual way to run a Node. js program is to run the globally available node command (once you install Node. js) and pass the name of the file you want to execute. While running the command, make sure you are in the same directory which contains the app.

Does npm install install everything? ›

If it finds that package (which it does), npm installs it to the project in an automatically generated node_modules folder (more on this in a bit) located in the project root folder, including everything the package needs to run.

How to install all node modules? ›

It's simple. If you want to install all the node_modules from the package. json file you simply put: npm install in terminal (on the same directory where the package. json exists) and it would install all the node modules in the folder called node_modules .

How do I run a npm command? ›

Configuring the Step
  1. Add the Run npm command Step to your Workflow preceding any build Step.
  2. Set the Working directory.
  3. Set the command you want npm to execute, for example install to run npm install in the The npm command with arguments to run input.

How do I use the latest version of Node? ›

To update Node using APT, do the following:
  1. First, check your current version of Node by running the following command: node -v.
  2. Then run this command to install the latest version of Node: sudo apt-get install nodejs.
  3. And finally verify that your update is complete by rechecking your Node version: node -v.
Dec 21, 2022

Can I have two NPM versions? ›

Aliases. With npm or yarn, you can install a package under a custom alias. This enables you to install multiple versions of a package in the same project. Read the documentation on aliasing with npm here and yarn here.

Can we install 2 versions of node on Windows? ›

nvm allows you to quickly install and use different versions of Node via the command line. You can read more about it and how to install it on the README. nvm was originally developed for Linux systems, however it can be installed separately for Windows.

Can you have multiple nodes on one computer? ›

This article explains why multiple Gala Nodes cannot be run on a single computer. When a person purchases multiple licenses and operates the Gala Node software, they will need to have the same number of machines available as they have licenses. One computer per node is required to help run the network and earn rewards.

How do I use different node versions without nvm? ›

So we just have to use the correct version of node at a time and rename the rest of nodes. every time you install new node version rename all nodejs & npm folder with _{versionNumber} so it will not override existing one.

How do I manage different Node versions? ›

Manage Multiple Node Versions
  1. Installing Node Version Manager. ...
  2. Setting Run Time Configuration. ...
  3. Installing Automatic Node Version Switching. ...
  4. AVN Updates Bash Profile. ...
  5. Setting Automatic Node Version. ...
  6. Evaluate Bash Profile.

How do I manage Node versions? ›

Managing Node versions
  1. Installation: Open up your terminal, paste the following code and hit enter: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash.
  2. Loading NVM: Just paste this command on your terminal and hit enter export NVM_DIR="$HOME/.nvm"

How do I see Node versions in nvm? ›

PS: The command nvm ls-remote will give you a live list of all node versions available to nvm.

How to check Node versions in nvm? ›

The NVM Use Command

You can also confirm the current version of Node with nvm current . NVM again returns the current version number. You can also confirm the version of Node currently in use with node -v . To go back to using the system's version of Node, run the command nvm use system .

How to change npm version using nvm? ›

nvm now has a command to update npm. It's nvm install-latest-npm or nvm install --latest-npm . nvm install-latest-npm : Attempt to upgrade to the latest working npm on the current Node.js version. nvm install --latest-npm : After installing, attempt to upgrade to the latest working npm on the given Node.js version.

How do I change the default node version in nvm? ›

nvm alias default 6.11.5 if you want it pegged to that specific version. You can also do nvm alias default 16 or nvm alias default node . Save this answer.
...
  1. Is there any way to target the latest version ? ...
  2. Try with nvm alias default lts/* ...
  3. Note you will need to install lts/fermium first.

Can we install multiple versions of node? ›

Node Version Manager is an open-source shell utility we can use to manage multiple Node. js versions on a single machine. Of course, we can install multiple Node. js versions without the use of any utility whatsoever.

How do I see all installed node versions? ›

Step 1: check your nodejs version using node –version command. Step 2: go to browser and search for nvm for windows. This is the nodejs version manager for windows that is a pre-requisite to download followed by installing the exe file. Step 3: Check number of node versions installed on terminal using nvm list command.

How to change the node version? ›

How to Update Node
  1. Use NPM to Update Your Node Version. To update Node with NPM, you will install the n package, which will be used to interactively manage node versions on your device. ...
  2. Use NVM to Update Your Node Version. ...
  3. Download Updated Node Binaries.
Apr 12, 2022

What is the command to check node version? ›

To see if Node is installed, open the Windows Command Prompt, Powershell or a similar command line tool, and type node -v . This should print the version number so you'll see something like this v0. 10.35 .

How do I install a new version of node? ›

To update Node using APT, do the following:
  1. First, check your current version of Node by running the following command: node -v.
  2. Then run this command to install the latest version of Node: sudo apt-get install nodejs.
  3. And finally verify that your update is complete by rechecking your Node version: node -v.
Dec 21, 2022

Videos

1. How to install Node JS | Install node version manager (nvm) on windows 10| Cache Cloud | Tutorials
(Cache Cloud)
2. How To Install Node.js on Ubuntu 22.04. How to install and use NMV (node version manager)
(Travels Code)
3. Use NVM Node Version Manager To Install Specific Version Of Node
(gleb bahmutov)
4. NVM - Node version manager | Installing multiple node version on single machine
(SelfTuts)
5. How to install and use Node Version Manager (NVM)
(DevSprout)
6. What is Node version manager (NVM) , how to install it and use it practically in windows .
(SoftwareEngineering_IND)
Top Articles
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated: 04/11/2023

Views: 6014

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.