新建项目

在您的电脑中新建一个文件夹,作为项目根目录。在新建的目录中打开命令行窗口,执行如下命令,初始化项目:

npm init -y

执行完成后,会在当前目录下生成一个package.json文件,内容如下:

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}

package.json文件定义了这个项目所需要的各种模块,以及项目的配置信息(比如名称、版本、许可证等元数据)。npm install 命令根据这个配置文件,自动下载所需的模块,也就是配置项目所需的运行和开发环境。package.json文件就是一个JSON对象,该对象的每一个成员就是当前项目的一项设置,如name表示项目名称,version表示版本。
继续执行如下命令安装iclient-leaflet:

npm install @supermap/iclient-leaflet

安装完成后,package.json中将新增dependencies项,并包含iClient for Leaflet:

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@supermap/iclient-leaflet": "^9.1.0-beta",
  }
}

results matching ""

    No results matching ""