- Node.js Web Development
- David Herron
- 104字
- 2021-06-25 21:53:59
Installing on Linux, *BSD, or Windows from package management systems
Node.js is now available through most of the package management systems. Instructions on the Node.js website currently list packaged versions of Node.js for a long list of Linux, as well as FreeBSD, OpenBSD, NetBSD, macOS, and even Windows. Visit https://nodejs.org/en/download/package-manager/ for more information.
For example, on Debian and other Debian-based Linux distro's (such as Ubuntu), use the following commands:
# curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - # sudo apt-get install -y nodejs # sudo apt-get install -y build-essential
To download other Node.js versions (this example shows version 10.x), modify the URL to suit.
推薦閱讀
- Boost.Asio C++ Network Programming(Second Edition)
- Ceph Cookbook
- 深度學習經典案例解析:基于MATLAB
- Learning C++ Functional Programming
- aelf區塊鏈應用架構指南
- Apache Karaf Cookbook
- Hands-On C++ Game Animation Programming
- MySQL數據庫管理與開發(慕課版)
- Python面向對象編程:構建游戲和GUI
- Learning Zurb Foundation
- 劍指Java:核心原理與應用實踐
- 深入分布式緩存:從原理到實踐
- Mastering Android Game Development
- Go語言編程
- .NET Standard 2.0 Cookbook