<!--lint disable no-literal-urls-->
<p align="center">
<a href="https://nodejs.org/">
<img
alt="Node.js"
src="https://nodejs.org/static/images/logo-light.svg"
width="400"
/>
</a>
</p>
Node.js is an open-source, cross-platform, JavaScript runtime environment.
For information on using Node.js, see the [Node.js Website][].
The Node.js project uses an [open governance model](./GOVERNANCE.md). The
[OpenJS Foundation][] provides support for the project.
**This project has a [Code of Conduct][].**
# Table of contents
* [Support](#support)
* [Release types](#release-types)
* [Download](#download)
* [Current and LTS releases](#current-and-lts-releases)
* [Nightly releases](#nightly-releases)
* [API documentation](#api-documentation)
* [Verifying binaries](#verifying-binaries)
* [Building Node.js](#building-nodejs)
* [Security](#security)
* [Contributing to Node.js](#contributing-to-nodejs)
* [Current project team members](#current-project-team-members)
* [TSC (Technical Steering Committee)](#tsc-technical-steering-committee)
* [Collaborators](#collaborators)
* [Triagers](#triagers)
* [Release keys](#release-keys)
* [License](#license)
## Support
Looking for help? Check out the
[instructions for getting support](.github/SUPPORT.md).
## Release types
* **Current**: Under active development. Code for the Current release is in the
branch for its major version number (for example,
[v15.x](https://github.com/nodejs/node/tree/v15.x)). Node.js releases a new
major version every 6 months, allowing for breaking changes. This happens in
April and October every year. Releases appearing each October have a support
life of 8 months. Releases appearing each April convert to LTS (see below)
each October.
* **LTS**: Releases that receive Long Term Support, with a focus on stability
and security. Every even-numbered major version will become an LTS release.
LTS releases receive 12 months of _Active LTS_ support and a further 18 months
of _Maintenance_. LTS release lines have alphabetically-ordered code names,
beginning with v4 Argon. There are no breaking changes or feature additions,
except in some special circumstances.
* **Nightly**: Code from the Current branch built every 24-hours when there are
changes. Use with caution.
Current and LTS releases follow [Semantic Versioning](https://semver.org). A
member of the Release Team [signs](#release-keys) each Current and LTS release.
For more information, see the
[Release README](https://github.com/nodejs/Release#readme).
### Download
Binaries, installers, and source tarballs are available at
<https://nodejs.org/en/download/>.
#### Current and LTS releases
<https://nodejs.org/download/release/>
The [latest](https://nodejs.org/download/release/latest/) directory is an
alias for the latest Current release. The latest-_codename_ directory is an
alias for the latest release from an LTS line. For example, the
[latest-fermium](https://nodejs.org/download/release/latest-fermium/) directory
contains the latest Fermium (Node.js 14) release.
#### Nightly releases
<https://nodejs.org/download/nightly/>
Each directory name and filename contains a date (in UTC) and the commit
SHA at the HEAD of the release.
#### API documentation
Documentation for the latest Current release is at <https://nodejs.org/api/>.
Version-specific documentation is available in each release directory in the
_docs_ subdirectory. Version-specific documentation is also at
<https://nodejs.org/download/docs/>.
### Verifying binaries
Download directories contain a `SHASUMS256.txt` file with SHA checksums for the
files.
To download `SHASUMS256.txt` using `curl`:
```console
$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
```
To check that a downloaded file matches the checksum, run
it through `sha256sum` with a command such as:
```console
$ grep node-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -
```
For Current and LTS, the GPG detached signature of `SHASUMS256.txt` is in
`SHASUMS256.txt.sig`. You can use it with `gpg` to verify the integrity of
`SHASUMS256.txt`. You will first need to import
[the GPG keys of individuals authorized to create releases](#release-keys). To
import the keys:
```console
$ gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
```
See the bottom of this README for a full script to import active release keys.
Next, download the `SHASUMS256.txt.sig` for the release:
```console
$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt.sig
```
Then use `gpg --verify SHASUMS256.txt.sig SHASUMS256.txt` to verify
the file's signature.
## Building Node.js
See [BUILDING.md](BUILDING.md) for instructions on how to build Node.js from
source and a list of supported platforms.
## Security
For information on reporting security vulnerabilities in Node.js, see
[SECURITY.md](./SECURITY.md).
## Contributing to Node.js
* [Contributing to the project][]
* [Working Groups][]
* [Strategic initiatives][]
* [Technical values and prioritization][]
## Current project team members
For information about the governance of the Node.js project, see
[GOVERNANCE.md](./GOVERNANCE.md).
<!-- node-core-utils and find-inactive-tsc.mjs depend on the format of the TSC
list. If the format changes, those utilities need to be tested and
updated. -->
### TSC (Technical Steering Committee)
<!--lint disable prohibited-strings-->
* [aduh95](https://github.com/aduh95) -
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
* [apapirovski](https://github.com/apapirovski) -
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
* [BethGriggs](https://github.com/BethGriggs) -
**Beth Griggs** <<bgriggs@redhat.com>> (she/her)
* [BridgeAR](https://github.com/BridgeAR) -
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
* [ChALkeR](https://github.com/ChALkeR) -
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
* [cjihrig](https://github.com/cjihrig) -
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
* [danielleadams](https://github.com/danielleadams) -
**Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
* [fhinkel](https://github.com/fhinkel) -
**Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
* [gireeshpunathil](https://github.com/gireeshpunathil) -
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
* [jasnell](https://github.com/jasnell) -
**James M Snell** <<jasnell@gmail.com>> (he/him)
* [joyeecheung](https://github.com/joyeecheung) -
**Joyee Cheung** <<joyeec9h3@gmail.com>> (she/her)
* [mcollina](https://github.com/mcollina) -
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
* [Mesteery](https://github.com/Mesteery) -
**Mestery** <<mestery@protonmail.com>> (he/him)
* [mhdawson](https://github.com/mhdawson) -
**Michael Dawson** <<midawson@redhat.com>> (he/him)
* [mmarchini](https://github.com/mmarchini) -
**Mary Marchini** <<oss@mmarchini.me>> (she/her)
* [MylesBorins](https://github.com/MylesBorins) -
**Myles Borins** <<myles.borins@gmail.com>> (he/him)
* [RaisinTen](https://github.com/RaisinTen) -
**Darshan Sen** <<raisinten@gmail.com>> (he/him)
* [richardlau](https://github.com/richardlau) -
**Richard Lau** <<rlau@redhat.com>>
* [ronag](https://github.com/ronag) -
**Robert Nagy** <<ronagy@icloud.com>>
* [targos](https://github.com/targos) -
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
* [tniessen](https://github.com/tniessen) -
**Tobias Nießen** <<tniessen@tnie.de>> (he/him)
* [Trott](https://github.com/Trott) -
**Rich Trott** <<rtrott@gmail.com>> (he/him)
<details>
<summary>Emeriti</summary>
### TSC emeriti
* [addaleax](https://github.com/addaleax) -
**Anna Henn
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
前些时候,水壶哥使用vue开发了一套《图书管理系统》,这套系统只有pc端,联想到当前社会是智能社会,任何系统基本都配有移动端,所以本着再次让大家学到新技术的目的,水壶哥又开发了一套《图书管理系统》的移动端,这套系统采用vue+ionic+capacitor框架,是一套基于vue和ionic的入门系统,虽然是入门,但所用到的技术绝对是当今主流,后台依然采用《图书管理系统》的后台,没有任何变化。 本资源包包含:图书借阅app的vue源码、图书管理系统pc端vue源码、图书管理系统springboot后台server源码(该后台基于springboot+mysql+jpa+mybatis技术)、nvm(nodejs管理工具)、nodejs、jdk1.8、打包后的apk(可以直接装在手机上)、图书管理系统使用说明文档、图书借阅app的使用说明文档。 详细说明请看:https://blog.csdn.net/leonMary/article/details/125507990
资源推荐
资源详情
资源评论
收起资源包目录
基于vue3+element+ionic6+capacitor+springboot+mysql图书管理系统pc端+app端合集 (2000个子文件)
app.07f859e9.css 27KB
app.07f859e9.css 27KB
app.07f859e9.css 27KB
variables.css 7KB
base.css 5KB
181.02615e57.css 751B
181.02615e57.css 751B
181.02615e57.css 751B
prettify.css 677B
160.81ec3889.css 659B
55.544d64a0.css 659B
160.81ec3889.css 659B
55.544d64a0.css 659B
160.81ec3889.css 659B
55.544d64a0.css 659B
iconfont.css 565B
257.df99ba1b.css 516B
257.df99ba1b.css 516B
257.df99ba1b.css 516B
150.2674e958.css 407B
150.2674e958.css 407B
150.2674e958.css 407B
621.8ae82d19.css 118B
621.8ae82d19.css 118B
621.8ae82d19.css 118B
205.24dc587e.css 79B
205.24dc587e.css 79B
205.24dc587e.css 79B
114.3ba10fe2.css 50B
904.2e8f333e.css 50B
336.0532d1c8.css 50B
698.333a92cb.css 50B
904.2e8f333e.css 50B
336.0532d1c8.css 50B
624.39a7b80d.css 50B
698.333a92cb.css 50B
114.3ba10fe2.css 50B
904.2e8f333e.css 50B
336.0532d1c8.css 50B
698.333a92cb.css 50B
359.9dd2f4e2.css 47B
359.9dd2f4e2.css 47B
359.9dd2f4e2.css 47B
图书管理系统pc端使用说明.docx 2.89MB
图书借阅app使用说明.docx 2.49MB
lint-results-release-fatal.html 5KB
index.html 3KB
index.html 3KB
index.js.html 2KB
index.html 874B
index.html 811B
index.html 811B
index.html 811B
index.html 628B
CameraLauncher.java 58KB
DateUtil.java 26KB
FileHelper.java 12KB
ArrayUtil.java 9KB
ExifHelper.java 7KB
BookService.java 7KB
UserController.java 6KB
BookController.java 5KB
JwtTokenUtils.java 5KB
SecurityConfig.java 4KB
BorrowController.java 4KB
UserService.java 3KB
BookSelfService.java 3KB
Borrow.java 3KB
User.java 3KB
BookSelfController.java 3KB
BaseEntity.java 3KB
ArraySqlTypeDescriptor.java 3KB
Book.java 2KB
AbstractArrayTypeDescriptor.java 2KB
QueryParam.java 2KB
JsonTypeDescriptor.java 2KB
PasswordDesUtils.java 2KB
JwtAuthTokenFilter.java 2KB
JsonNodeTypeDescriptor.java 2KB
BookPage.java 2KB
AbstractJsonSqlTypeDescriptor.java 2KB
GalleryPathVO.java 2KB
JsonBinarySqlTypeDescriptor.java 1KB
MyUserDetailsService.java 1KB
JacksonUtil.java 1KB
JsonStringSqlTypeDescriptor.java 1KB
BookSelf.java 1KB
BookSort.java 1KB
ManagerApplication.java 1007B
FileProvider.java 967B
BookPageable.java 826B
StringArrayType.java 774B
ExampleInstrumentedTest.java 774B
IntArrayType.java 756B
JsonStringType.java 747B
MyPasswordEncoder.java 726B
JsonBinaryType.java 708B
UserRepository.java 466B
JsonNodeBinaryType.java 459B
BookType.java 427B
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
西山水壶
- 粉丝: 4659
- 资源: 22
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页