├── .replit ├── README.md ├── index.js ├── package-lock.json ├── package.json └── views ├── cloudflare.ejs ├── null └── webview.ejs /.replit: -------------------------------------------------------------------------------- 1 | entrypoint = "index.js" 2 | 3 | hidden = [".config"] 4 | 5 | [interpreter] 6 | command = [ 7 | "prybar-nodejs", 8 | "-q", 9 | "--ps1", 10 | "\u0001\u001b[33m\u0002\u0001\u001b[00m\u0002 ", 11 | "-i" 12 | ] 13 | 14 | [[hints]] 15 | regex = "Error \\[ERR_REQUIRE_ESM\\]" 16 | message = "We see that you are using require(...) inside your code. We currently do not support this syntax. Please use 'import' instead when using external modules. (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)" 17 | 18 | [nix] 19 | channel = "stable-22_05" 20 | 21 | [env] 22 | XDG_CONFIG_HOME = "/home/runner/.config" 23 | PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin" 24 | npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global" 25 | 26 | [gitHubImport] 27 | requiredFiles = [".replit", "replit.nix", ".config"] 28 | 29 | [packager] 30 | language = "nodejs" 31 | 32 | [packager.features] 33 | packageSearch = true 34 | guessImports = true 35 | enabledForHosting = false 36 | 37 | [unitTest] 38 | language = "nodejs" 39 | 40 | [debugger] 41 | support = true 42 | 43 | [debugger.interactive] 44 | transport = "localhost:0" 45 | startCommand = [ "dap-node" ] 46 | 47 | [debugger.interactive.initializeMessage] 48 | command = "initialize" 49 | type = "request" 50 | 51 | [debugger.interactive.initializeMessage.arguments] 52 | clientID = "replit" 53 | clientName = "replit.com" 54 | columnsStartAt1 = true 55 | linesStartAt1 = true 56 | locale = "en-us" 57 | pathFormat = "path" 58 | supportsInvalidatedEvent = true 59 | supportsProgressReporting = true 60 | supportsRunInTerminalRequest = true 61 | supportsVariablePaging = true 62 | supportsVariableType = true 63 | 64 | [debugger.interactive.launchMessage] 65 | command = "launch" 66 | type = "request" 67 | 68 | [debugger.interactive.launchMessage.arguments] 69 | args = [] 70 | console = "externalTerminal" 71 | cwd = "." 72 | environment = [] 73 | pauseForSourceMap = false 74 | program = "./index.js" 75 | request = "launch" 76 | sourceMaps = true 77 | stopOnEntry = false 78 | type = "pwa-node" 79 | 80 | [languages] 81 | 82 | [languages.javascript] 83 | pattern = "**/{*.js,*.jsx,*.ts,*.tsx}" 84 | 85 | [languages.javascript.languageServer] 86 | start = "typescript-language-server --stdio" 87 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
37 |
38 |
41 |
61 |
42 |
55 |
60 |
43 |
44 |
45 |
46 |
47 | Checking your browser before accessing the website.48 | 51 |This process is automatic. Your browser will redirect to your requested content shortly. 52 | 53 |Redirecting… 54 | |
67 |