Skip to content

Commit b44cee1

Browse files
authored
docs: update README.md links (#2466)
1 parent bb284c6 commit b44cee1

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ___
66

77
## Getting Started
88

9-
Visit the [documentation site](https://docs.slack.dev/node-slack-sdk) for all the lovely details.
9+
Visit the [documentation site](https://docs.slack.dev/tools/node-slack-sdk/) for all the lovely details.
1010

1111
_This SDK is a collection of single-purpose packages. The packages are aimed at making building Slack apps
1212
easy, performant, secure, and scalable. They can help with just about anything in the Slack platform, from dropping
@@ -16,15 +16,15 @@ The Slack platform offers several APIs to build apps. Each Slack API delivers pa
1616
platform, so that you can pick just those that fit for your needs. This SDK offers a corresponding package for each of
1717
Slack's APIs. They are small and powerful when used independently, and work seamlessly when used together, too.
1818

19-
**Just starting out?** The [Getting Started tutorial](https://docs.slack.dev/node-slack-sdk/getting-started) will
19+
**Just starting out?** The [Getting Started tutorial](https://docs.slack.dev/tools/node-slack-sdk/getting-started) will
2020
walk you through building your first Slack app using Node.js.
2121

2222
| Slack API | Use | NPM Package |
2323
|--------------|--------------|-------------------|
24-
| Web API | Send data to or query data from Slack using any of [over 220 methods](https://docs.slack.dev/reference/methods). | [`@slack/web-api`](https://docs.slack.dev/node-slack-sdk/web-api) |
25-
| OAuth | Set up the authentication flow using V2 OAuth for Slack apps as well as V1 OAuth for classic Slack apps. | [`@slack/oauth`](https://docs.slack.dev/node-slack-sdk/oauth) |
26-
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://docs.slack.dev/node-slack-sdk/webhook) |
27-
| Socket Mode | Listen for incoming messages and a limited set of events happening in Slack, using WebSocket. | [`@slack/socket-mode`](https://docs.slack.dev/node-slack-sdk/socket-mode) |
24+
| Web API | Send data to or query data from Slack using any of [over 220 methods](https://docs.slack.dev/reference/methods). | [`@slack/web-api`](https://docs.slack.dev/tools/node-slack-sdk/web-api) |
25+
| OAuth | Set up the authentication flow using V2 OAuth for Slack apps as well as V1 OAuth for classic Slack apps. | [`@slack/oauth`](https://docs.slack.dev/tools/node-slack-sdk/oauth) |
26+
| Incoming Webhooks | Send notifications to a single channel which the user picks on installation. | [`@slack/webhook`](https://docs.slack.dev/tools/node-slack-sdk/webhook) |
27+
| Socket Mode | Listen for incoming messages and a limited set of events happening in Slack, using WebSocket. | [`@slack/socket-mode`](https://docs.slack.dev/tools/node-slack-sdk/socket-mode) |
2828

2929
**Not sure about which APIs are right for your app?** Read our [blog
3030
post](https://medium.com/slack-developer-blog/getting-started-with-slacks-apis-f930c73fc889) that explains the options.
@@ -34,7 +34,7 @@ If you're still not sure, [reach out for help](#getting-help) and our community
3434

3535
`@slack/events-api` and `@slack/interactive-messages` officially reached EOL on May 31st, 2021. Development has fully stopped for these packages and all remaining open issues and pull requests have been closed.
3636

37-
At this time, we recommend migrating to [Bolt for JavaScript](https://github.com/slackapi/bolt-js), a framework that offers all of the functionality available in those packages (and more). To help with that process, we've provided some [migration samples](https://docs.slack.dev/node-slack-sdk/migration/migrating-to-v6) for those looking to convert their existing apps.
37+
At this time, we recommend migrating to [Bolt for JavaScript](https://github.com/slackapi/bolt-js), a framework that offers all of the functionality available in those packages (and more). To help with that process, we've provided some [migration samples](https://docs.slack.dev/tools/node-slack-sdk/migration/migrating-to-v6/) for those looking to convert their existing apps.
3838

3939
## Installation
4040

@@ -50,7 +50,7 @@ $ yarn add @slack/web-api @slack/socket-mode
5050
## Usage
5151

5252
The following examples summarize the most common ways to use this package. There's also a [Getting Started
53-
tutorial](https://docs.slack.dev/node-slack-sdk/getting-started) that's perfect for just starting out, and each
53+
tutorial](https://docs.slack.dev/tools/node-slack-sdk/getting-started) that's perfect for just starting out, and each
5454
package's documentation, linked in the table above.
5555

5656
### Posting a message with Web API
@@ -88,15 +88,15 @@ where you can prototype your message's look and feel.
8888

8989
### Listening for an event with the Events API
9090

91-
Refer to [Bolt for JavaScript document pages](https://docs.slack.dev/bolt-js/concepts#event-listening).
91+
Refer to [Bolt for JavaScript document pages](https://docs.slack.dev/tools/bolt-js/concepts/event-listening).
9292

9393
### Responding to interactive messages
9494

95-
Refer to [Bolt for JavaScript document pages](https://docs.slack.dev/bolt-js/concepts#action-listening).
95+
Refer to [Bolt for JavaScript document pages](https://docs.slack.dev/tools/bolt-js/concepts/actions).
9696

9797
### Using Socket Mode
9898

99-
Refer to [the module document page](https://docs.slack.dev/node-slack-sdk/socket-mode) and [Bolt for JavaScript document page](https://docs.slack.dev/bolt-js/concepts#socket-mode).
99+
Refer to [the module document page](https://docs.slack.dev/tools/node-slack-sdk/socket-mode) and [Bolt for JavaScript document page](https://docs.slack.dev/bolt-js/concepts/socket-mode).
100100

101101
## Requirements
102102

0 commit comments

Comments
 (0)