您身边的网站建设专家
成功案例

【建站服务】长宁网站推广【长宁办理400电话】长宁SEO优化、长宁微信公众号APP客户端小程序开发、长宁网站托管、长宁APP开发-域名申请

日期: 2022-09-20 16:00:20 浏览数:10


上往建站提供服务器空间服务商百度快照排名网站托管百度推广运营,致力于设计外包服务与源代码定制开发360推广搜狗推广,增加网站的能见度及访问量提升网络营销的效果,主营:网站公司,百度推广公司电话,官网搭建服务,网站服务企业排名,服务器空间,英文域名等业务,专业团队服务,效果好。


长宁网站推广【长宁办理400电话】长宁SEO优化、长宁微信公众号APP客户端小程序开发、长宁网站托管、长宁APP开发


网站建设.jpg


长宁区位于上海中心城区西部,东连静安区,西与西南邻闵行区,东南接徐汇区,北与普陀区以吴淞江(苏州河)为界,总面积38.3平方公里。2019年常住人口69.36万人,全年实现长宁区生产总值(GDP)1649.14亿元。

长宁境内交通有新华路、江苏路、延安路、长宁路、虹桥路等主要道路,延安路高架、内环线、中环线、外环线和上海地铁2、3、4、10、15号线通过区境。上海虹桥国际机场位于区域西部。

长宁拥有上海最集中的涉外高标准住宅商务办公综合区古北新区、老上海传统的高级住宅区新华路、虹桥花园别墅区、苏州河沿线中高档住宅区和普通新村住宅区。位于长宁的国家级开发区虹桥经济技术开发区则是上海最早最成熟的现代化商务区之一,外国领事馆、500强企业等聚集林立,为沪上外籍人士聚居之地。

长宁纪念地有全国重点文物保护单位宋庆龄陵园,市级文物保护单位中共中央机关刊物《布尔塞维克》编辑部旧址等。文化体育设施有刘海粟美术馆等。 [1] 

长宁10个街道(镇)均被评为市级文明社区,成功创建了一批市级、区级文明小区、文明单位,2011年荣膺“全国文明城区”称号。2017年,长宁区被重新确认为国家卫生城市(区)。 [2]  2017年,长宁区复查确认继续保留全国文明城市称号。

2020年6月,经中央依法治国委入选为第一批全国法治政府建设示范地区和项目名单 [3]  ;10月20日,入选全国双拥模范城(县)名单 [4]  。


npm-developers

Developer Guide

Description

So, you've decided to use npm to develop (and maybe publish/deploy) your project.

Fantastic!

There are a few things that you need to do above the simple steps that your users will do to install your program.

About These Documents

These are man pages. If you install npm, you should be able to then do man npm-thing to get the documentation on a particular topic, or npm help thing to see the same information.

What is a package

A package is:

Even if you never publish your package, you can still get a lot of benefits of using npm if you just want to write a node program (a), and perhaps if you also want to be able to easily install it elsewhere after packing it up into a tarball (b).

Git urls can be of the form:

git://github.com/user/project.git#commit-ish
git+ssh://user@hostname:project.git#commit-ish
git+http://user@hostname/project/blah.git#commit-ish
git+https://user@hostname/project/blah.git#commit-ish

The commit-ish can be any tag, sha, or branch which can be supplied as an argument to git checkout. The default is master.

The package.json File

You need to have a package.json file in the root of your project to do much of anything with npm. That is basically the whole interface.

See package.json for details about what goes in that file. At the very least, you need:

You can use npm init in the root of your package in order to get you started with a pretty basic package.json file. See npm-init for more info.

Keeping files out of your package

Use a .npmignore file to keep stuff out of your package. If there's no .npmignore file, but there is a .gitignore file, then npm will ignore the stuff matched by the .gitignore file. If you want to include something that is excluded by your .gitignore file, you can create an empty .npmignore file to override it. Like gitnpm looks for .npmignore and .gitignore files in all subdirectories of your package, not only the root directory.

.npmignore files follow the same pattern rules as .gitignore files:

By default, the following paths and files are ignored, so there's no need to add them to .npmignore explicitly:

Additionally, everything in node_modules is ignored, except for bundled dependencies. npm automatically handles this for you, so don't bother adding node_modules to .npmignore.

The following paths and files are never ignored, so adding them to .npmignore is pointless:

If, given the structure of your project, you find .npmignore to be a maintenance headache, you might instead try populating the files property of package.json, which is an array of file or directory names that should be included in your package. Sometimes a whitelist is easier to manage than a blacklist.

Testing whether your .npmignore or files config works

If you want to double check that your package will include only the files you intend it to when published, you can run the npm pack command locally which will generate a tarball in the working directory, the same way it does for publishing.

Link Packages

npm link is designed to install a development package and see the changes in real time without having to keep re-installing it. (You do need to either re-link or npm rebuild -g to update compiled packages, of course.)

More info at npm-link.

Before Publishing: Make Sure Your Package Installs and Works

This is important.

If you can not install it locally, you'll have problems trying to publish it. Or, worse yet, you'll be able to publish it, but you'll be publishing a broken or pointless package. So don't do that.

In the root of your package, do this:

npm install . -g

That'll show you that it's working. If you'd rather just create a symlink package that points to your working directory, then do this:

npm link

Use npm ls -g to see if it's there.

To test a local install, go into some other folder, and then do:

cd ../some-other-folder
npm install ../my-package

to install it locally into the node_modules folder in that other place.

Then go into the node-repl, and try using require("my-thing") to bring in your module's main module.

Create a User Account

Create a user with the adduser command. It works like this:

npm adduser

and then follow the prompts.

This is documented better in npm-adduser.

Publish your package

This part's easy. In the root of your folder, do this:

npm publish

You can give publish a url to a tarball, or a filename of a tarball, or a path to a folder.

Note that pretty much everything in that folder will be exposed by default. So, if you have secret stuff in there, use a .npmignore file to list out the globs to ignore, or publish from a fresh checkout.

Brag about it

Send emails, write blogs, blab in IRC.

Tell the world how easy it is to install your program!

See Also



长宁网站推广长宁办理400电话长宁SEO优化、长宁微信公众号APP客户端小程序开发、长宁网站托管、长宁APP开发


上往建站提供搭建网站域名注册官网备案服务网店详情页设计企业网店专业网络店铺管理运营全托管公司咨询电话,服务器空间,微信公众号托管网页美工排版,致力于域名申请竞价托管软文推广全网营销,提供标准级专业技术保障,了却后顾之忧,主营:虚拟主机网站推广百度竞价托管网站建设上网建站推广服务网络公司有哪些等业务,专业团队服务,效果好。

服务热线:400-111-6878 手机微信同号:18118153152(各城市商务人员可上门服务)


全国咨询热线:400-111-6878

地址:全国各地都有驻点商务

Copyright © 2021 通陆科技

网站建设上往建站