UNPKG

5.54 kBMarkdownView Raw
1### Build App
2
3**Build App** is a full-stack JS App build system. Inspired by Facebook's create-react-app and other client build systems it is going one step futher providing similar facilities for full-stack JS development.
4
5The aim of the project is to simplify development of modern full-stack JS applications, providing most of basic dev operations out of the box (build, run dev mode, lint, etc).
6
7It is provided with starter templates for Client/Server which you can combine to seed you project with technologies of your choice.
8
9See deployed template here:
10
11[React / PostgreSQL on Heroku](https://napp-full-tmp.herokuapp.com)
12
13Use user_a@test.com / pas123 for login.
14
15_Build App_ works is OS-agnostic.
16
17## Getting started
18
19```sh
20# install build-app globally
21npm install -g build-app
22
23# see list of available commands
24app-scripts --help
25
26# init new project
27app-scripts init
28
29# change directory to new project folder
30cd my-app
31
32# seed project
33app-scripts seed
34```
35
36To run server: open project in IDE (preferably VS Code) and use available configuration alternatively you can run it with `app-script serve -s`
37
38To run client run in terminal: `app-scripts serve -c`
39
40## Project structure
41
42_Build App_ assumes some predefined project structure.
43
44Project consists of server and client parts.
45
46By default server part is located in {root}/server folder and client in {root}/client.
47
48Those values can be overridden in build-app.config.
49
50### Client:
51
52Client is SPA written in one modern JS front-end frameworks (React/Angular/vue). They are using existing client side build systems (like create-react-app for React).
53
54Build system expects to be able to create client build by running 'npm run build' command in client folder. Output is expected in {client}/build folder and index.html starts client SPA application.
55
56More details how to setup client-side build you can find in docs for particular build system:
57
58React: [create-react-app](https://github.com/facebookincubator/create-react-app)
59### Server:
60
61Both JS/TS js flavors are supported. For JS you can use latest language features like ES6, async/await and others. Code is compiled to ES5 during the build.
62
63Server entry file should be located at ./src/index (.ts or .js).
64
65There are some special folders
66
67**data**: folder with data assets like data json files, email templates, etc.
68
69**local**: folder where server writes data to, here you can have logs output, local overridden values for config file, file uploads, etc.
70
71## app-script commands
72
73After build-app is installed globally app-scripts command is available globally. It has different commands (scripts). Note instead of 'app-scripts' command you can use 'napp' alias.
74
75### Init
76
77_init_ command seeds empty project. There are separate templates for server and client parts.
78
79For interactive init run init command with no parameters:
80
81```sh
82app-scripts init
83```
84
85To see all available templates run:
86
87```sh
88app-scripts init --list
89```
90
91To seed project with particular templates use --project --server --client options:
92
93```sh
94app-scripts init my-app --project simple --server ts --client react
95```
96
97To init basic IDE settings use option --ide (currently supported ws/code)
98
99```
100app-scripts init my-app --default --ide code
101```
102
103### Seed
104
105_seed_ command do initial project setup. That includes installing dependencies, building server/client code, and running seed task if available in template. Note you can run install and build commands separately later.
106
107```
108app-scripts seed
109```
110
111### Install
112
113_install_ command installs dependencies for both client and server project parts. It can use one of following package managers under the hood: npm, yarn, pnpm. If pnpm is installed globally it is used, then yarn used if available, then npm.
114
115The same can be done manually with
116
117```sh
118cd {server_dir}
119npm install
120
121cd ../{client_dir}
122npm install
123```
124
125### Build
126
127_build_ command creates production ready build in build folder (./build by default).
128
129To start server run index.js file. You may need to install dependencies first.
130
131Build command builds server and client separately and then combines them together into deployable build package.
132
133### Deploy
134
135Deploys application to different sources (by using target parameter):
136
137#### _local_ deployments:
138
139```bash
140app-scripts deploy
141```
142
143Build package copied to deployment folder (./deploy/local by default) and starts the application with one of supported process managers (forever or pm2). Following deployments will stop application first and clear all deploy folder content except local folder.
144
145#### _heroku_ deployments:
146
147Create new heroku app
148
149Install heroku and login locally
150
151```bash
152npm i -g heroku
153heroku login
154```
155
156For deployment run
157
158```bash
159# specify heroku app id for initial deployment
160app-scripts deploy -t heroku -i dev --heroku-app my-heroku-id-for-dev
161# for following deployment you can skip that
162app-scripts deploy -t heroku -i dev
163```
164
165Note that that you can deploy to multiple instances corresponding to different environments (dev/staging), you have to create separate heroku apps for each
166## Npm Scripts
167
168Some operations are expected to be configured as particular npm scripts:
169
170Build client - 'build' script (in client folder)
171
172Serve client - 'start' script
173
174Serve server - 'start' script (in server folder)
175
176Also if pre-build/post-build scripts are defined in server/client package.json files corresponding scripts will be executed before/after server/client builds.
177
178## Local development
179
180For local development run
181
182```bash
183npm link #(in package dir)
184```