Skip to content

Commit e791d83

Browse files
committed
feat(): starts sponsoring
1 parent 857ad57 commit e791d83

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.github/FUNDING.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
2+
patreon: # Replace with a single Patreon username
3+
open_collective: # Replace with a single Open Collective username
4+
ko_fi: # Replace with a single Ko-fi username
5+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
6+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
7+
liberapay: # Replace with a single Liberapay username
8+
issuehunt: # Replace with a single IssueHunt username
9+
otechie: # Replace with a single Otechie username
10+
custom: # Replace with a Custom

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _Note: Because Fabrix is lightweight and easily extendable, it's also very __ver
1414
## Getting Started
1515

1616
#### Install
17-
_Note: The CLI is under construction, search for example apps in the meantime_
17+
_Note: The CLI is under construction, search for [example apps](https://github.com/fabrix-app/example-app) in the meantime_
1818

1919
Install the Fabrix CLI. This will help you generate a Fabrix app and more.
2020

@@ -65,7 +65,14 @@ Once installation is complete, begin weaving!
6565
$ npm run compile && node dist/server.js
6666
```
6767

68+
or simply
69+
70+
```sh
71+
$ npm start
72+
```
73+
6874
#### Sew on and Sew Forth!
75+
Fabrix is really focused on bringing great libraries together in congruent ways. So if you have something like a web [scrapping library](https://github.com/fabrix-app/spool-scraper), then it's easy to implement that as a Spool and share it with the ever growing fabrix ecosystem.
6976

7077
## Spools
7178

@@ -75,6 +82,7 @@ capabilities and allow developers to leverage existing ecosystem tools through a
7582
Many Fabrix installations will include some of the following Spools:
7683

7784
- [router](https://github.com/fabrix-app/spool-router)
85+
- [errors](https://github.com/fabrix-app/spool-errors)
7886
- [i18n](https://github.com/fabrix-app/spool-i18n)
7987
- [repl](https://github.com/fabrix-app/spool-repl)
8088
- [express](https://github.com/fabrix-app/spool-express)

lib/common/Spool.ts

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ export interface Spool extends FabrixGeneric {
1515
}
1616

1717
export class Spool extends FabrixGeneric {
18+
private _address: string
19+
private _port: string
20+
private _exclusive: boolean
21+
1822
private _stage = 'pre'
1923
private _config: ISpoolConfig
2024
private _pkg: any // IPkg

0 commit comments

Comments
 (0)