28 lines
361 B
Markdown
28 lines
361 B
Markdown
---
|
|
title: Node.js 环境搭建
|
|
categories:
|
|
- Node.js
|
|
keywords:
|
|
- Node.js
|
|
- npm
|
|
tags:
|
|
- Node.js
|
|
date: 2022-09-03 18:18:10
|
|
---
|
|
|
|
# 环境搭建
|
|
|
|
## 配置
|
|
|
|
用户配置文件 `$HOME/.npmrc`
|
|
|
|
``` conf
|
|
fund=false
|
|
init.author.email=username@example.com
|
|
init.author.name=Your Name
|
|
init.license=MIT
|
|
init.version=0.1.0
|
|
loglevel=error
|
|
prefix=~/.node_modules
|
|
```
|