Introducing Network, a purpose-built communication platform that brings your team together. Stay informed, make decisions, and collaborate with easy-to-use tools so you can focus on what really matters: your work.
Network is currently invite-only. Sign up to request access.
We care about the protection of your data. Read our Privacy Policy.
Network gives your company a place to collaborate effectively, without the stress of real-time messaging. Network organizes work across groups, while encouraging focused discussion on specific subjects. Get things done faster by spreading context, gathering feedback, and making decisions.
Your team's discussions are no longer scattershot, they're precisely structured. This allows teams to take full advantage of asynchronous communication and eliminate the hassles of context switching.
Network's posts encourage focused discussions on specific subjects. Unlike in messy chat apps, information naturally stays structured and on-topic. This makes it easy to search for information later.
Network is built for speed. We've included powerful features to help you stay organized and navigate Network quickly.
Network has built-in features tailored towards making quick decisions and figuring out what to do next. Mark posts as "Decision Made" with a single click so conversation outcomes are clear. Attach action items to posts so you know what you need to get back to.
Network respects your focus. Network has fine-grained notifications settings so you're only pinged when you want to be. Use snooze to temporarily hide posts for later. And stay focused with Distraction Free Mode.
Navigate Network rapidly just using your keyboard. Use the command line to quickly leave comments, navigate between groups, and search for posts.
We know that real-time messaging and video calls have their place. That's why we've built-in deep integration with Slack and Zoom, two of our favorite communication tools, so that you can use them side-by-side with Network.
Meetings are a central part of every office. Network helps you schedule meetings or jump immediately into a conversation using Slack and Zoom. See your coworker's availability right on their profile.
Have a thread on Slack that needs to be saved for future reference or shared more broadly? Just mention @network and the conversation will be synced in real-time to Network as if it happened on Network in the first place.
Customize Network to your needs. We know every team has unique workflows. Network has an extermely open and secure developer platform that allows you and 3rd-party developers to create apps that let you leverage the platform as you need to.
Use the SDKs or REST APIs to programmatically create posts from bot users to get important notifications, track important metrics, and surface crucial udpates in Network.
Listen (with an optional filter) to posts and comments across Network to programmatically respond to them. For example, create a bot that listens for the phrase "#thanks" and tracks compliments given to team members.
Freely export or analyze the data within your Network, while respecting the privacy settings of private groups and secret posts. Network features a full SQL interface to the underlying data we store about your posts, comments, groups, and more.
1const {
2 client,
3 networkEventsAdapter,
4 EventType,
5} = require("network-api");
6
7const networkClient = new client(ACCESS_TOKEN, SECRET);
8const networkEvents = networkEventsAdapter(client);
9const port = process.env.PORT || 3000;
10
11// Attach listeners to comments
12networkEvents.on("comment", (event) => {
13 console.log(
14 `Received a comment event: user \${event.user}
15 in group \${event.group}
16 says \${event.text}`
17 );
18
19 if (event.text.includes("#thanks")) {
20 const mentions = event.mentions.join(" ");
21 networkClient.replyToComment(
22 event.commentId,
23 `Recored #thanks for \${mentions}.
24 View the leaderboard here: [link]`
25 );
26 }
27});
28
29(async () => {
30 const server = await networkEvents.start(port);
31 console.log(`Listening for events on \${server.address().port}`);
32})();
Network is built for speed. We've included powerful features to help you stay organized and navigate Network quickly.
Some description of the integration and how it works. Network has built-in features tailored towards making quick decisions and figuring out what to do next. Mark posts as "Decision Made" with a single click so conversation outcomes are clear. Attach action items to posts so you know what you need to get back to.
Some description of the integration and how it works. Network has built-in features tailored towards making quick decisions and figuring out what to do next. Mark posts as "Decision Made" with a single click so conversation outcomes are clear. Attach action items to posts so you know what you need to get back to.
Some description of the integration and how it works. Network has built-in features tailored towards making quick decisions and figuring out what to do next. Mark posts as "Decision Made" with a single click so conversation outcomes are clear. Attach action items to posts so you know what you need to get back to.
Some description of the integration and how it works. Network has built-in features tailored towards making quick decisions and figuring out what to do next. Mark posts as "Decision Made" with a single click so conversation outcomes are clear. Attach action items to posts so you know what you need to get back to.
Introducing Network, a purpose-built communication platform that brings your team together. Stay informed, make decisions, and collaborate with easy-to-use tools so you can focus on what really matters: your work.