mirror of
https://github.com/aljazceru/pear-docs.git
synced 2025-12-17 22:44:21 +01:00
403 B
403 B
Starting a Pear Terminal Project
Step 1. Init
First create a new project using pear init.
$ mkdir chat-bot
$ cd chat-bot
$ pear init --yes
This will create a base structure for the project.
package.json. Configuration for the app. Notice thepearproperty.index.js. The entrpoint for the app.app.js. The main code.test/index.test.js. Skeleton for writing tests.