0.4.0 • Published 1 year ago
@makeflow/gateway v0.4.0
Makeflow Gateway
A configurable gateway for development and production.
Usage
import {
Gateway,
createIndexFileFallbackMatchPathRegex,
} from '@makeflow/gateway';
// development
const gateway = new Gateway({
listen: {
port: 8080,
},
targets: [
{
type: 'proxy',
match: '/app/api',
target: 'http://localhost:8081{path}',
},
{
type: 'proxy',
match: '/app',
target: 'http://localhost:8082{path}',
},
{
type: 'proxy',
match: '/api',
target: 'http://localhost:8061{path}',
},
{
type: 'proxy',
match: '',
target: 'http://localhost:8062{path}',
},
],
});
// production
const gateway = new Gateway({
listen: {
port: 8080,
},
targets: [
{
type: 'proxy',
match: '/app/api',
target: 'http://makeflow-app-server:8081{path}',
},
{
type: 'file',
match: createIndexFileFallbackMatchPathRegex('/app'),
target: Path.join(__dirname, '../../static/app/index.html'),
},
{
type: 'file',
match: '/app',
target: Path.join(__dirname, '../../static/app{path}'),
},
{
type: 'proxy',
match: '/api',
target: 'http://makeflow-community-site-server:8061{path}',
},
{
type: 'file',
match: createIndexFileFallbackMatchPathRegex(),
target: Path.join(__dirname, '../../static/site/index.html'),
},
{
type: 'file',
match: '',
target: Path.join(__dirname, '../../static/site{path}'),
},
],
});
gateway.serve();
License
MIT License.
0.4.0
1 year ago
0.3.0
2 years ago
0.2.1
2 years ago
0.2.0
2 years ago
0.3.2
2 years ago
0.3.1
2 years ago
0.3.3
2 years ago
0.1.13
3 years ago
0.1.14
3 years ago
0.1.15
3 years ago
0.1.12
3 years ago
0.1.11
3 years ago
0.1.10
4 years ago
0.1.8
4 years ago
0.1.9
4 years ago
0.1.7
4 years ago
0.1.6
4 years ago
0.1.5
4 years ago
0.1.2
4 years ago
0.1.4
4 years ago
0.1.3
4 years ago
0.1.1
4 years ago
0.1.0
4 years ago