Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wechaty getting started sub-section of the Introduction section #899

Merged
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docusaurus/docs/getting-started-with-wechaty.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Getting started
---

We have made it very easy to start writing Wechaty code in any of the supported programming languages. You need a few lines of code to turn your IM (such as [WeChat](https://www.wechat.com/), [Whatsapp](https://www.whatsapp.com/), [Wecom](https://work.weixin.qq.com/), [Lark](https://www.larksuite.com/zh_cn/), etc) account into a chatbot. Your chatbot will have conversations on behalf of you with Wechaty Conversational RPA technology.

We have set up a Wechaty [getting-started repository](https://github.com/wechaty/wechaty-getting-started) to help you start writing code in a couple of minutes. The Wechaty [getting-started repository](https://github.com/wechaty/wechaty-getting-started) contains code for a bot which we refer to as the [DING DONG](https://github.com/wechaty/wechaty-getting-started/blob/master/examples/ding-dong-bot.js) bot. The DING DOT bot is meant to help absolute beginners start writing Wechaty code without setting up their own development environment. You can run it on [Gitpod](https://www.gitpod.io/), [Google cloud shell](https://cloud.google.com/shell) or on your local machine. [Gitpod](https://www.gitpod.io/) and [Google cloud shell](https://cloud.google.com/shell) are both online [IDEs](https://www.redhat.com/en/topics/middleware/what-is-ide) that will get you running the DING DONG bot instantly.

## Gitpod

Gitpod is an online IDE which provides you with a complete development environment accompanied by a Visual-Studio-Code powered IDE and a cloud-based Linux container. You can navigate to the [Tutorials section](quick-start/running-on-gitpod.md) to run the Wechaty [getting-started repository](https://github.com/wechaty/wechaty-getting-started) on gitpod.

## Google cloud shell

Google cloud shell is also an online development and operations environment which is accessible anywhere with your browser. You can navigate to the [Tutorials section](quick-start/running-on-google-cloud-shell.md) to run the [getting-started repository](https://github.com/wechaty/wechaty-getting-started) on Google cloud shell instantly.

## Local development environment

You can also set up your own server for running the [getting-started repository](https://github.com/wechaty/wechaty-getting-started) on your machine instead of using the cloud-based IDE. There is a [beginner-friendly tutorial](getting-started/running-locally.mdx) in the [tutorials section](getting-started/overview.mdx) which will take you by the hand to help you run the getting-started repository on your local machine.
1 change: 1 addition & 0 deletions docusaurus/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ const introduction = {
items: [
'overview',
'wechaty',
'getting-started-with-wechaty',
subMenu(showcases),
subMenu(caseStudy),
subMenu(community),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wechaty.js.org",
"version": "0.8.334",
"version": "0.8.335",
"description": "Wechaty Official Website for News, Blogs, Contributor Profiles, and Documentations",
"private": true,
"directories": {
Expand Down