-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Startup Server Feedbadck and Port In Use Detection
- Loading branch information
Showing
16 changed files
with
356 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
export const COLOUR_CODES = { | ||
WHITE: "\u001b[37m", | ||
BLACK: "\u001b[30m", | ||
BLUE: "\u001b[34m", | ||
CYAN: "\u001b[36m", | ||
GREEN: "\u001b[32m", | ||
MAGENTA: "\u001b[35m", | ||
RED: "\u001b[31m", | ||
YELLOW: "\u001b[33m", | ||
GREY: "\u001b[90m", | ||
BRIGHT_BLACK: "\u001b[90m", | ||
BRIGHT_RED: "\u001b[91m", | ||
BRIGHT_GREEN: "\u001b[92m", | ||
BRIGHT_YELLOW: "\u001b[93m", | ||
BRIGHT_BLUE: "\u001b[94m", | ||
BRIGHT_MAGENTA: "\u001b[95m", | ||
BRIGHT_CYAN: "\u001b[96m", | ||
BRIGHT_WHITE: "\u001b[97m", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const RESET_CODES = { | ||
BOLD: 22, | ||
ITALIC: 23, | ||
UNDERLINE: 24, | ||
INVERSE: 27 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const STYLE_CODES = { | ||
BOLD: 1, | ||
ITALIC: 3, | ||
UNDERLINE: 4, | ||
INVERSE: 7 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export const PREFIX = "\u001b["; | ||
export const SUFFIX = "m"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.