1 | # LINE Messaging API SDK for nodejs
|
2 |
|
3 | [![Github Action](https://github.com/line/line-bot-sdk-nodejs/actions/workflows/test.yml/badge.svg)](https://github.com/line/line-bot-sdk-nodejs/actions/workflows/test.yml)
|
4 | [![npmjs](https://badge.fury.io/js/%40line%2Fbot-sdk.svg)](https://www.npmjs.com/package/@line/bot-sdk)
|
5 |
|
6 |
|
7 | ## Introduction
|
8 | The LINE Messaging API SDK for nodejs makes it easy to develop bots using LINE Messaging API, and you can create a sample bot within minutes.
|
9 |
|
10 | ## Documentation
|
11 |
|
12 | See the official API documentation for more information
|
13 |
|
14 | - English: https://developers.line.biz/en/docs/messaging-api/overview/
|
15 | - Japanese: https://developers.line.biz/ja/docs/messaging-api/overview/
|
16 |
|
17 | line-bot-sdk-nodejs documentation: https://line.github.io/line-bot-sdk-nodejs/#getting-started
|
18 |
|
19 | ## Requirements
|
20 |
|
21 | * **Node.js** 18 or higher
|
22 |
|
23 | ## Installation
|
24 |
|
25 | Using [npm](https://www.npmjs.com/):
|
26 |
|
27 | ``` bash
|
28 | $ npm install @line/bot-sdk --save
|
29 | ```
|
30 |
|
31 | ## Help and media
|
32 | FAQ: https://developers.line.biz/en/faq/
|
33 |
|
34 | News: https://developers.line.biz/en/news/
|
35 |
|
36 | ## Versioning
|
37 | This project respects semantic versioning
|
38 |
|
39 | See http://semver.org/
|
40 |
|
41 | ## Contributing
|
42 |
|
43 | Please check [CONTRIBUTING](CONTRIBUTING.md) before making a contribution.
|
44 |
|
45 | ## License
|
46 | ```
|
47 | Copyright (C) 2016 LINE Corp.
|
48 |
|
49 | Licensed under the Apache License, Version 2.0 (the "License");
|
50 | you may not use this file except in compliance with the License.
|
51 | You may obtain a copy of the License at
|
52 |
|
53 | http://www.apache.org/licenses/LICENSE-2.0
|
54 |
|
55 | Unless required by applicable law or agreed to in writing, software
|
56 | distributed under the License is distributed on an "AS IS" BASIS,
|
57 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
58 | See the License for the specific language governing permissions and
|
59 | limitations under the License.
|
60 | ```
|