如何在 Debian 10 上安装 Gulp.js

在本教程中,我们将向您展示如何在 Debian 10 上安装 Gulp.js。对于那些不知道的人,Gulp.js 是一个开源工具包,可帮助开发人员自动执行开发工作流程中的任务。 Gulp 可用于使流程自动化并轻松运行重复性任务。 它是一个基于 Node.js 和 npm 构建的任务运行器,用于自动化 Web 开发中涉及的耗时且重复的任务,例如缩小、连接、缓存破坏等。

本文假设您至少具有 Linux 的基本知识,知道如何使用 shell,并且最重要的是,您在自己的 VPS 上托管您的站点。 安装非常简单,假设您在 root 帐户中运行,否则您可能需要添加 ‘sudo‘ 获取 root 权限的命令。 我将向您展示如何在 Debian 10 (Buster) 上逐步安装 Gulp.js。

在 Debian 10 Buster 上安装 Gulp.js

步骤 1. 在运行下面的教程之前,通过运行以下命令确保您的系统是最新的很重要 apt 终端中的命令:

sudo apt update sudo apt install ca-certificates

步骤 2. 安装 Node.js。

在安装 Gulp 之前,您还需要安装 Node.js。 首先,使用以下命令添加 Node.js 存储库:

curl -sL https://deb.nodesource.com/setup_14.x | bash -

然后,使用以下命令安装 Node.js:

sudo apt install nodejs

确保你已经在你的系统上成功安装了 node.js 和 NPM:

node --version npm --version

步骤 2. 在 Debian 10 上安装 Gulp.js。

现在我们使用以下命令在您的系统上全局安装 Gulp CLI:

npm install -g gulp-cli

接下来,切换到现有的 Node.js 应用程序目录或使用以下命令创建一个新应用程序:

mkdir my-project cd my-project node init

输出:

This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults.  See `npm help init` for definitive documentation on these fields and exactly what they do.  Use `npm install ` afterwards to install a package and save it as a dependency in the package.json file.  Press ^C at any time to quit. package name: (project)  version: (1.0.0)  description: My Gulp Project entry point: (index.js)  test command: "echo "How Are You" && exit 1" git repository:  keywords:  author: Admin license: (ISC)  About to write to /root/project/package.json:

然后,将 Gulp 模块添加到您的项目中:

npm install --save-dev gulp

之后,检查应用程序中安装的 Gulp CLI 和 Gulp 模块的版本:

$ gulp --version  CLI version: 2.2.1 Local version: 4.0.3

恭喜! 您已成功安装 Gulp.js。 感谢您使用本教程在 Debian 系统上安装最新版本的 Gulp.js。 如需更多帮助或有用信息,我们建议您查看 Gulp.js 官方网站.