├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ └── nodejsci.yml ├── .gitignore ├── .sonar-project.properties ├── CHANGELOG.md ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CODING_STANDARDS.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENCE ├── README.md ├── ROADMAP.md ├── changelog.hbs ├── documentation ├── .gitignore ├── README.md ├── docs │ ├── .vitepress │ │ ├── config.ts │ │ └── theme │ │ │ ├── custom.css │ │ │ ├── index.ts │ │ │ └── my-fonts.css │ ├── about │ │ ├── our-goal.md │ │ └── our-team.md │ ├── build │ │ ├── arguments.md │ │ └── configuration.md │ ├── community │ │ ├── contribute.md │ │ ├── get-help.md │ │ └── give-feedback.md │ ├── deploy │ │ ├── environments.md │ │ ├── health-checks.md │ │ ├── load-balancing.md │ │ ├── resources.md │ │ ├── runtime-settings.md │ │ └── segmentation.md │ ├── develop │ │ ├── application-structure.md │ │ ├── assets.md │ │ ├── data-consistency.md │ │ ├── data-sharing.md │ │ ├── debugging.md │ │ ├── error-handling.md │ │ ├── middleware.md │ │ ├── security.md │ │ ├── setup-and-teardown.md │ │ ├── state-management.md │ │ ├── validation.md │ │ └── writing-functions.md │ ├── examples │ │ ├── concepts.md │ │ └── full-stack.md │ ├── fundamentals │ │ ├── building-blocks.md │ │ └── runtime-services.md │ ├── guides │ │ ├── add-jitar-to-an-existing-project.md │ │ ├── creating-a-cluster.md │ │ └── migrate-away-from-jitar.md │ ├── index.md │ ├── integrate │ │ ├── rpc-api.md │ │ └── vite-plugin.md │ ├── introduction │ │ ├── installation.md │ │ ├── quick-start.md │ │ └── what-is-jitar.md │ ├── monitor │ │ ├── health.md │ │ └── logging.md │ └── public │ │ ├── icon.png │ │ └── robots.txt ├── package-lock.json └── package.json ├── eslint.config.mjs ├── examples ├── .gitignore ├── README.md ├── access-protection │ ├── .env │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ ├── protected.json │ │ └── public.json │ ├── services │ │ ├── gateway.json │ │ ├── protected.json │ │ ├── public.json │ │ └── standalone.json │ ├── src │ │ ├── game │ │ │ ├── checkSecret.ts │ │ │ ├── getSecret.ts │ │ │ └── index.ts │ │ └── web │ │ │ └── guessSecret.ts │ └── tsconfig.json ├── cors │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── server.json │ ├── services │ │ └── standalone.json │ ├── src │ │ ├── app.ts │ │ ├── client.ts │ │ ├── getWeatherForecast.ts │ │ ├── handleCors.ts │ │ └── index.html │ └── tsconfig.json ├── data-transportation │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ ├── account.json │ │ └── helpdesk.json │ ├── services │ │ ├── account.json │ │ ├── gateway.json │ │ ├── helpdesk.json │ │ └── standalone.json │ ├── src │ │ ├── account │ │ │ ├── Account.ts │ │ │ └── createAccount.ts │ │ └── helpdesk │ │ │ ├── Registration.ts │ │ │ └── register.ts │ └── tsconfig.json ├── error-handling │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ ├── data.json │ │ └── process.json │ ├── services │ │ ├── data.json │ │ ├── gateway.json │ │ ├── process.json │ │ └── standalone.json │ ├── src │ │ ├── DatabaseError.ts │ │ ├── exportData.ts │ │ └── getData.ts │ └── tsconfig.json ├── health-checks │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── default.json │ ├── services │ │ └── standalone.json │ ├── src │ │ └── databaseHealthCheck.ts │ └── tsconfig.json ├── hello-world │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── default.json │ ├── services │ │ └── standalone.json │ ├── src │ │ └── sayHello.ts │ └── tsconfig.json ├── load-balancing │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── calculator.json │ ├── services │ │ ├── gateway.json │ │ ├── standalone.json │ │ ├── worker1.json │ │ └── worker2.json │ ├── src │ │ └── calculator │ │ │ ├── add.ts │ │ │ ├── divide.ts │ │ │ ├── multiply.ts │ │ │ └── subtract.ts │ └── tsconfig.json ├── middleware │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── default.json │ ├── services │ │ └── standalone.json │ ├── src │ │ ├── argumentMiddleware.ts │ │ ├── hello.ts │ │ ├── loggingMiddleware.ts │ │ ├── ping.ts │ │ ├── redirect.ts │ │ └── redirectMiddleware.ts │ └── tsconfig.json ├── multi-version │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ │ └── default.json │ ├── services │ │ └── standalone.json │ ├── src │ │ └── getEmployee.ts │ └── tsconfig.json ├── resources │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── resources │ │ └── database.json │ ├── segments │ │ └── default.json │ ├── services │ │ └── standalone.json │ ├── src │ │ ├── database.ts │ │ ├── getData.ts │ │ ├── setUpDatabase.ts │ │ └── tearDownDatabase.ts │ └── tsconfig.json └── segmentation │ ├── README.md │ ├── jitar.json │ ├── package.json │ ├── requests.http │ ├── segments │ ├── data.json │ └── process.json │ ├── services │ ├── data.json │ ├── gateway.json │ ├── process.json │ └── standalone.json │ ├── src │ └── reporting │ │ ├── createReport.ts │ │ ├── createStatistics.ts │ │ └── getData.ts │ └── tsconfig.json ├── migrations ├── migrate-from-0.3.x-to-0.4.0.md ├── migrate-from-0.4.0-to-0.4.1.md ├── migrate-from-0.4.x-to-0.5.0.md ├── migrate-from-0.5.x-to-0.6.x.md ├── migrate-from-0.6.x-to-0.7.x.md ├── migrate-from-0.7.x-to-0.8.0.md ├── migrate-from-0.8.x-to-0.9.0.md └── migrate-from-0.9.x-to-0.10.0.md ├── package.json ├── packages ├── .gitignore ├── analysis │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── dynamic │ │ │ ├── ClassMerger.ts │ │ │ ├── Reflector.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── ESAlias.ts │ │ │ ├── ESArray.ts │ │ │ ├── ESClass.ts │ │ │ ├── ESDeclaration.ts │ │ │ ├── ESDestructuredArray.ts │ │ │ ├── ESDestructuredObject.ts │ │ │ ├── ESDestructuredValue.ts │ │ │ ├── ESExport.ts │ │ │ ├── ESExpression.ts │ │ │ ├── ESField.ts │ │ │ ├── ESFunction.ts │ │ │ ├── ESGenerator.ts │ │ │ ├── ESGetter.ts │ │ │ ├── ESIdentifier.ts │ │ │ ├── ESImport.ts │ │ │ ├── ESMember.ts │ │ │ ├── ESModule.ts │ │ │ ├── ESObject.ts │ │ │ ├── ESParameter.ts │ │ │ ├── ESScope.ts │ │ │ ├── ESSetter.ts │ │ │ ├── ESValue.ts │ │ │ └── index.ts │ │ └── static │ │ │ ├── Lexer.ts │ │ │ ├── Parser.ts │ │ │ ├── definitions │ │ │ ├── Comment.ts │ │ │ ├── Divider.ts │ │ │ ├── Empty.ts │ │ │ ├── Group.ts │ │ │ ├── Keyword.ts │ │ │ ├── List.ts │ │ │ ├── Literal.ts │ │ │ ├── Operator.ts │ │ │ ├── Punctuation.ts │ │ │ ├── Scope.ts │ │ │ ├── TokenType.ts │ │ │ └── Whitespace.ts │ │ │ ├── errors │ │ │ ├── ExpectedKeyword.ts │ │ │ ├── ExpectedToken.ts │ │ │ ├── UnexpectedKeyword.ts │ │ │ ├── UnexpectedParseResult.ts │ │ │ └── UnexpectedToken.ts │ │ │ ├── index.ts │ │ │ └── models │ │ │ ├── CharList.ts │ │ │ ├── ItemList.ts │ │ │ ├── Token.ts │ │ │ └── TokenList.ts │ ├── test │ │ ├── dynamic │ │ │ ├── Reflector.spec.ts │ │ │ └── fixtures │ │ │ │ ├── classes.fixture.ts │ │ │ │ ├── functions.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modules.fixture.ts │ │ │ │ └── objects.fixture.ts │ │ ├── models │ │ │ ├── ESClass.spec.ts │ │ │ ├── ESModule.spec.ts │ │ │ ├── ESScope.spec.ts │ │ │ └── fixtures │ │ │ │ ├── esClass.fixture.ts │ │ │ │ ├── esModule.fixture.ts │ │ │ │ ├── esScope.fixture.ts │ │ │ │ └── index.ts │ │ └── static │ │ │ ├── Lexer.spec.ts │ │ │ ├── Parser.spec.ts │ │ │ └── fixtures │ │ │ ├── classes.fixture.ts │ │ │ ├── code.fixture.ts │ │ │ ├── declarations.fixture.ts │ │ │ ├── exports.fixture.ts │ │ │ ├── functions.fixture.ts │ │ │ ├── imports.fixture.ts │ │ │ ├── index.ts │ │ │ ├── modules.fixture.ts │ │ │ └── values.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts ├── build │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── BuildManager.ts │ │ ├── ProjectFileManager.ts │ │ ├── definitions │ │ │ ├── Defaults.ts │ │ │ ├── Files.ts │ │ │ ├── Keywords.ts │ │ │ ├── Patterns.ts │ │ │ ├── Values.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── source │ │ │ ├── application │ │ │ │ ├── Reader.ts │ │ │ │ ├── index.ts │ │ │ │ └── models │ │ │ │ │ └── Application.ts │ │ │ ├── index.ts │ │ │ ├── module │ │ │ │ ├── LocationRewriter.ts │ │ │ │ ├── Reader.ts │ │ │ │ ├── errors │ │ │ │ │ └── FileNotLoaded.ts │ │ │ │ ├── index.ts │ │ │ │ └── models │ │ │ │ │ ├── Module.ts │ │ │ │ │ └── Repository.ts │ │ │ ├── resource │ │ │ │ ├── Reader.ts │ │ │ │ ├── errors │ │ │ │ │ └── FileNotLoaded.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ └── ResourcesList.ts │ │ │ │ └── types │ │ │ │ │ └── File.ts │ │ │ └── segment │ │ │ │ ├── MemberLocator.ts │ │ │ │ ├── Reader.ts │ │ │ │ ├── errors │ │ │ │ ├── DuplicateImplementation.ts │ │ │ │ ├── FileNotLoaded.ts │ │ │ │ ├── FunctionNotAsync.ts │ │ │ │ ├── InvalidFilename.ts │ │ │ │ ├── InvalidModuleExport.ts │ │ │ │ ├── MissingModuleExport.ts │ │ │ │ └── ModuleNotFound.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ ├── Class.ts │ │ │ │ ├── Implementation.ts │ │ │ │ ├── Import.ts │ │ │ │ ├── Member.ts │ │ │ │ ├── Module.ts │ │ │ │ ├── Procedure.ts │ │ │ │ ├── Segment.ts │ │ │ │ └── Segmentation.ts │ │ │ │ └── types │ │ │ │ ├── ExportInfo.ts │ │ │ │ ├── File.ts │ │ │ │ ├── ImportInfo.ts │ │ │ │ ├── ImportProperties.ts │ │ │ │ └── Imports.ts │ │ ├── target │ │ │ ├── application │ │ │ │ └── Builder.ts │ │ │ ├── index.ts │ │ │ ├── module │ │ │ │ ├── Builder.ts │ │ │ │ ├── ExportRewriter.ts │ │ │ │ ├── ImportRewriter.ts │ │ │ │ ├── LocalBuilder.ts │ │ │ │ ├── LocationRewriter.ts │ │ │ │ └── RemoteBuilder.ts │ │ │ └── segment │ │ │ │ └── Builder.ts │ │ └── utils │ │ │ ├── FileHelper.ts │ │ │ ├── IdGenerator.ts │ │ │ └── index.ts │ ├── test │ │ └── dummy.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── cli │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ArgumentProcessor.ts │ │ ├── Cli.ts │ │ ├── Command.ts │ │ ├── CommandRunner.ts │ │ ├── Option.ts │ │ ├── commands │ │ │ ├── BuildApp.ts │ │ │ ├── InitApp.ts │ │ │ ├── ShowAbout.ts │ │ │ ├── ShowHelp.ts │ │ │ ├── ShowVersion.ts │ │ │ └── StartServer.ts │ │ ├── errors │ │ │ ├── CommandNotFound.ts │ │ │ └── MissingArgument.ts │ │ └── index.ts │ ├── test │ │ ├── ArgumentProcessor.spec.ts │ │ └── fixtures │ │ │ ├── arguments.fixture.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── configuration │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ConfigurationManager.ts │ │ ├── environment │ │ │ ├── Configurator.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── runtime │ │ │ ├── ConfigurationBuilder.ts │ │ │ ├── definitions │ │ │ │ └── RuntimeConfiguration.ts │ │ │ ├── errors │ │ │ │ └── RuntimeConfigurationInvalid.ts │ │ │ └── index.ts │ │ ├── server │ │ │ ├── ConfigurationBuilder.ts │ │ │ ├── definitions │ │ │ │ ├── GatewayConfiguration.ts │ │ │ │ ├── ProxyConfiguration.ts │ │ │ │ ├── RemoteWorkerConfiguration.ts │ │ │ │ ├── RepositoryConfiguration.ts │ │ │ │ ├── ServerConfiguration.ts │ │ │ │ ├── StandaloneConfiguration.ts │ │ │ │ └── WorkerConfiguration.ts │ │ │ ├── errors │ │ │ │ └── ServerConfigurationInvalid.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── ConfigurationReader.ts │ │ │ ├── errors │ │ │ └── InvalidConfigurationFile.ts │ │ │ └── index.ts │ ├── test │ │ ├── environment │ │ │ └── Configurator.spec.ts │ │ ├── fixtures │ │ │ ├── fileManager.fixture.ts │ │ │ └── index.ts │ │ ├── runtime │ │ │ ├── ConfigurationBuilder.spec.ts │ │ │ └── fixtures │ │ │ │ ├── configuration.fixture.ts │ │ │ │ ├── filenames.fixture.ts │ │ │ │ ├── files.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ └── validation.fixture.ts │ │ ├── server │ │ │ ├── ConfigurationBuilder.spec.ts │ │ │ └── fixtures │ │ │ │ ├── configuration.fixture.ts │ │ │ │ ├── filenames.fixture.ts │ │ │ │ ├── files.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ └── validation.fixture.ts │ │ └── utils │ │ │ ├── ConfigurationReader.spec.ts │ │ │ └── fixtures │ │ │ ├── configuration.fixture.ts │ │ │ ├── filenames.fixture.ts │ │ │ ├── files.fixture.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── create-jitar │ ├── CHANGELOG.md │ ├── README.md │ ├── index.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── errors │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── BadRequest.ts │ │ ├── Forbidden.ts │ │ ├── NotFound.ts │ │ ├── NotImplemented.ts │ │ ├── PaymentRequired.ts │ │ ├── ServerError.ts │ │ ├── Teapot.ts │ │ ├── Unauthorized.ts │ │ └── index.ts │ └── tsconfig.json ├── execution │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ExecutionManager.ts │ │ ├── definitions │ │ │ ├── AccessLevel.ts │ │ │ ├── RunModes.ts │ │ │ └── StatusCodes.ts │ │ ├── errors │ │ │ ├── ImplementationNotFound.ts │ │ │ ├── InvalidParameterValue.ts │ │ │ ├── InvalidSegment.ts │ │ │ ├── InvalidVersionNumber.ts │ │ │ ├── MissingParameterValue.ts │ │ │ ├── ProcedureNotAccessible.ts │ │ │ ├── ProcedureNotFound.ts │ │ │ └── UnknownParameter.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── Runner.ts │ │ ├── models │ │ │ ├── Application.ts │ │ │ ├── ArrayParameter.ts │ │ │ ├── Class.ts │ │ │ ├── DestructuredParameter.ts │ │ │ ├── Implementation.ts │ │ │ ├── NamedParameter.ts │ │ │ ├── ObjectParameter.ts │ │ │ ├── Parameter.ts │ │ │ ├── Procedure.ts │ │ │ ├── Request.ts │ │ │ ├── Response.ts │ │ │ ├── Segment.ts │ │ │ └── Version.ts │ │ └── utils │ │ │ ├── ArgumentConstructor.ts │ │ │ ├── ErrorConverter.ts │ │ │ └── VersionParser.ts │ ├── test │ │ ├── ExecutionManager.spec.ts │ │ ├── fixtures │ │ │ ├── executionManagers.fixture.ts │ │ │ └── index.ts │ │ ├── models │ │ │ ├── Application.spec.ts │ │ │ ├── Implementation.spec.ts │ │ │ ├── Procedure.spec.ts │ │ │ ├── Segment.spec.ts │ │ │ ├── Version.spec.ts │ │ │ └── fixtures │ │ │ │ ├── applications.fixture.ts │ │ │ │ ├── executables.fixture.ts │ │ │ │ ├── implementations.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ ├── parameters.fixture.ts │ │ │ │ ├── procedures.fixture.ts │ │ │ │ ├── segments.fixture.ts │ │ │ │ └── versions.fixture.ts │ │ └── utils │ │ │ ├── ArgumentConstructor.spec.ts │ │ │ ├── VersionParser.spec.ts │ │ │ └── fixtures │ │ │ ├── arguments.fixture.ts │ │ │ ├── index.ts │ │ │ ├── parameters.fixture.ts │ │ │ └── versions.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts ├── health │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── HealthManager.ts │ │ ├── definitions │ │ │ └── States.ts │ │ ├── errors │ │ │ └── InvalidHealthCheck.ts │ │ ├── index.ts │ │ └── interfaces │ │ │ └── HealthCheck.ts │ ├── test │ │ ├── HealthManager.spec.ts │ │ └── fixtures │ │ │ ├── healthChecks.fixture.ts │ │ │ ├── healthManagers.fixture.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── http │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── FetchHttpClient.ts │ │ ├── HttpRemote.ts │ │ ├── HttpRemoteBuilder.ts │ │ ├── HttpServer.ts │ │ ├── definitions │ │ │ ├── Defaults.ts │ │ │ ├── HeaderKeys.ts │ │ │ ├── HeaderValues.ts │ │ │ └── IgnoredHeaderKeys.ts │ │ ├── errors │ │ │ └── InvalidWorkerId.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── HttpClient.ts │ │ └── middleware │ │ │ └── CorsMiddleware.ts │ ├── test │ │ ├── HttpRemote.spec.ts │ │ ├── HttpServer.spec.ts │ │ └── fixtures │ │ │ ├── TestHttpClient.ts │ │ │ ├── httpResponses.fixture.ts │ │ │ ├── index.ts │ │ │ └── values.fixtures.ts │ ├── tsconfig.json │ └── vite.config.ts ├── init │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── InitManager.ts │ │ ├── errors │ │ │ ├── InvalidName.ts │ │ │ └── UnknownTemplate.ts │ │ └── index.ts │ ├── templates │ │ ├── backend │ │ │ ├── _gitignore │ │ │ ├── jitar.json │ │ │ ├── package.json │ │ │ ├── requests.http │ │ │ ├── segments │ │ │ │ ├── hello.json │ │ │ │ └── hi.json │ │ │ ├── services │ │ │ │ ├── gateway.json │ │ │ │ ├── hello.json │ │ │ │ ├── hi.json │ │ │ │ └── standalone.json │ │ │ ├── src │ │ │ │ └── greetings │ │ │ │ │ ├── sayBoth.ts │ │ │ │ │ ├── sayHello.ts │ │ │ │ │ └── sayHi.ts │ │ │ └── tsconfig.json │ │ ├── react │ │ │ ├── _gitignore │ │ │ ├── index.html │ │ │ ├── jitar.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── segments │ │ │ │ └── default.json │ │ │ ├── services │ │ │ │ └── standalone.json │ │ │ ├── src │ │ │ │ ├── domain │ │ │ │ │ └── sayHello.ts │ │ │ │ ├── vite-env.d.ts │ │ │ │ └── webui │ │ │ │ │ ├── App.css │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── assets │ │ │ │ │ ├── jitar.svg │ │ │ │ │ └── react.svg │ │ │ │ │ ├── index.css │ │ │ │ │ └── main.tsx │ │ │ ├── tsconfig.base.json │ │ │ ├── tsconfig.build.json │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ │ └── vue │ │ │ ├── _gitignore │ │ │ ├── index.html │ │ │ ├── jitar.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ └── vite.svg │ │ │ ├── segments │ │ │ └── default.json │ │ │ ├── services │ │ │ └── standalone.json │ │ │ ├── src │ │ │ ├── domain │ │ │ │ └── sayHello.ts │ │ │ ├── vite-env.d.ts │ │ │ └── webui │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ ├── jitar.svg │ │ │ │ └── vue.svg │ │ │ │ ├── main.ts │ │ │ │ └── style.css │ │ │ ├── tsconfig.build.json │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── jitar │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── rollup.definitions.js │ ├── src │ │ ├── cli.ts │ │ ├── client.ts │ │ └── lib.ts │ ├── tsconfig.json │ └── vite.config.ts ├── logging │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── Logger.ts │ │ ├── Writer.ts │ │ ├── definitions │ │ │ └── LogLevel.ts │ │ ├── errors │ │ │ └── InvalidLogLevel.ts │ │ ├── index.ts │ │ └── utils │ │ │ └── LogLevelParser.ts │ ├── test │ │ ├── Logger.spec.ts │ │ ├── fixtures │ │ │ ├── index.ts │ │ │ ├── loggers.fixture.ts │ │ │ ├── values.fixture.ts │ │ │ └── writer.fixture.ts │ │ └── utils │ │ │ └── LogLevelParser.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── middleware │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── MiddlewareManager.ts │ │ ├── definitions │ │ │ └── States.ts │ │ ├── errors │ │ │ └── InvalidMiddleware.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── Middleware.ts │ │ └── types │ │ │ └── NextHandler.ts │ ├── test │ │ ├── MiddlewareManager.spec.ts │ │ └── fixtures │ │ │ ├── index.ts │ │ │ ├── middlewareManagers.fixture.ts │ │ │ └── middlewares.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts ├── plugin-vite │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── runtime │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ProcedureRunner.ts │ │ ├── Runtime.ts │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── ClientBuilder.ts │ │ ├── index.ts │ │ └── server │ │ │ ├── ResourceManager.ts │ │ │ ├── Server.ts │ │ │ ├── ServerBuilder.ts │ │ │ ├── definitions │ │ │ ├── ContentTypes.ts │ │ │ └── StatusCodes.ts │ │ │ ├── errors │ │ │ └── UnknownServiceConfigured.ts │ │ │ └── types │ │ │ ├── AddWorkerRequest.ts │ │ │ ├── ProvideRequest.ts │ │ │ ├── RemoveWorkerRequest.ts │ │ │ ├── ReportWorkerRequest.ts │ │ │ ├── RunRequest.ts │ │ │ └── ServerResponse.ts │ ├── test │ │ └── dummy.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── scheduling │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ScheduleManager.ts │ │ ├── ScheduledTask.ts │ │ ├── index.ts │ │ └── types │ │ │ └── Task.ts │ ├── test │ │ └── dummy.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── serialization │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── Serializer.ts │ │ ├── SerializerBuilder.ts │ │ ├── ValueSerializer.ts │ │ ├── errors │ │ │ ├── ClassNotFound.ts │ │ │ ├── InvalidClass.ts │ │ │ ├── NoDeserializerFound.ts │ │ │ ├── NoSerializerFound.ts │ │ │ └── ParentSerializerNotSet.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── ClassResolver.ts │ │ ├── serializers │ │ │ ├── ArraySerializer.ts │ │ │ ├── BigIntSerializer.ts │ │ │ ├── BufferSerializer.ts │ │ │ ├── ClassSerializer.ts │ │ │ ├── DateSerializer.ts │ │ │ ├── ErrorSerializer.ts │ │ │ ├── MapSerializer.ts │ │ │ ├── ObjectSerializer.ts │ │ │ ├── PrimitiveSerializer.ts │ │ │ ├── RegExpSerializer.ts │ │ │ ├── SetSerializer.ts │ │ │ ├── TypedArraySerializer.ts │ │ │ ├── UrlSerializer.ts │ │ │ └── errors │ │ │ │ ├── InvalidBigIntString.ts │ │ │ │ ├── InvalidBufferString.ts │ │ │ │ ├── InvalidDateString.ts │ │ │ │ ├── InvalidRegExp.ts │ │ │ │ └── InvalidUrlString.ts │ │ └── types │ │ │ ├── Resolvable.ts │ │ │ ├── Serialized.ts │ │ │ ├── TypedArray.ts │ │ │ └── serialized │ │ │ ├── SerializableObject.ts │ │ │ ├── SerializedBigInt.ts │ │ │ ├── SerializedBuffer.ts │ │ │ ├── SerializedClass.ts │ │ │ ├── SerializedDate.ts │ │ │ ├── SerializedError.ts │ │ │ ├── SerializedMap.ts │ │ │ ├── SerializedObject.ts │ │ │ ├── SerializedRegExp.ts │ │ │ ├── SerializedSet.ts │ │ │ ├── SerializedTypedArray.ts │ │ │ └── SerializedUrl.ts │ ├── test │ │ ├── Serializer.spec.ts │ │ ├── SerializerBuilder.spec.ts │ │ ├── fixtures │ │ │ ├── index.ts │ │ │ └── serializers.fixture.ts │ │ └── serializers │ │ │ ├── ArraySerializer.spec.ts │ │ │ ├── BigIntSerializer.spec.ts │ │ │ ├── BufferSerializer.spec.ts │ │ │ ├── ClassSerializer.spec.ts │ │ │ ├── DateSerializer.spec.ts │ │ │ ├── ErrorSerializer.spec.ts │ │ │ ├── MapSerializer.spec.ts │ │ │ ├── ObjectSerializer.spec.ts │ │ │ ├── PrimitiveSerializer.spec.ts │ │ │ ├── RegExpSerializer.spec.ts │ │ │ ├── SetSerializer.spec.ts │ │ │ ├── TypedArraySerializer.spec.ts │ │ │ ├── UrlSerializer.spec.ts │ │ │ └── fixtures │ │ │ ├── arrays.fixture.ts │ │ │ ├── bigIntegers.fixture.ts │ │ │ ├── buffers.fixture.ts │ │ │ ├── classResolver.fixture.ts │ │ │ ├── classes.fixture.ts │ │ │ ├── dates.fixture.ts │ │ │ ├── errors.fixture.ts │ │ │ ├── index.ts │ │ │ ├── maps.fixture.ts │ │ │ ├── objects.fixture.ts │ │ │ ├── primitives.fixture.ts │ │ │ ├── regularExpressions.fixture.ts │ │ │ ├── sets.fixture.ts │ │ │ ├── typedArrays.fixture.ts │ │ │ └── urls.fixture.ts │ └── tsconfig.json ├── services │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ProviderService.ts │ │ ├── RunnerService.ts │ │ ├── Service.ts │ │ ├── common │ │ │ ├── Remote.ts │ │ │ ├── RemoteBuilder.ts │ │ │ ├── ReportedStateManager.ts │ │ │ ├── RequestPool.ts │ │ │ ├── StateManager.ts │ │ │ ├── definitions │ │ │ │ └── States.ts │ │ │ └── errors │ │ │ │ └── RequestCancelled.ts │ │ ├── dummy │ │ │ ├── DummyProvider.ts │ │ │ └── DummyRunner.ts │ │ ├── gateway │ │ │ ├── Gateway.ts │ │ │ ├── LocalGateway.ts │ │ │ ├── RemoteGateway.ts │ │ │ ├── WorkerBalancer.ts │ │ │ ├── WorkerManager.ts │ │ │ ├── errors │ │ │ │ ├── InvalidTrustKey.ts │ │ │ │ ├── NoWorkerAvailable.ts │ │ │ │ └── UnknownWorker.ts │ │ │ └── utils │ │ │ │ └── IdGenerator.ts │ │ ├── index.ts │ │ ├── proxy │ │ │ └── LocalProxy.ts │ │ ├── repository │ │ │ ├── LocalRepository.ts │ │ │ ├── RemoteRepository.ts │ │ │ └── Repository.ts │ │ └── worker │ │ │ ├── ExecutionClassResolver.ts │ │ │ ├── LocalWorker.ts │ │ │ ├── RemoteWorker.ts │ │ │ ├── RemoteWorkerBuilder.ts │ │ │ ├── Worker.ts │ │ │ └── errors │ │ │ └── RequestNotTrusted.ts │ ├── test │ │ ├── gateway │ │ │ ├── LocalGateway.spec.ts │ │ │ ├── WorkerBalancer.spec.ts │ │ │ ├── WorkerManager.spec.ts │ │ │ └── fixtures │ │ │ │ ├── healthManager.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ ├── localGateways.fixture.ts │ │ │ │ ├── remoteWorkers.fixture.ts │ │ │ │ ├── remotes.fixture.ts │ │ │ │ ├── scheduleManager.fixture.ts │ │ │ │ ├── sourcingManager.fixture.ts │ │ │ │ ├── values.fixture.ts │ │ │ │ ├── workerBalancers.fixture.ts │ │ │ │ └── workerManagers.fixture.ts │ │ ├── repository │ │ │ ├── LocalRepository.spec.ts │ │ │ └── fixtures │ │ │ │ ├── filenames.fixture.ts │ │ │ │ ├── files.fixtures.ts │ │ │ │ ├── healthManager.fixture.ts │ │ │ │ ├── index.ts │ │ │ │ ├── localRepositories.fixture.ts │ │ │ │ └── sourcingManager.fixture.ts │ │ └── worker │ │ │ ├── LocalWorker.spec.ts │ │ │ └── fixtures │ │ │ ├── executionManager.fixture.ts │ │ │ ├── healthManager.fixture.ts │ │ │ ├── index.ts │ │ │ ├── localWorkers.fixture.ts │ │ │ ├── procedures.fixture.ts │ │ │ ├── scheduleManager.fixture.ts │ │ │ ├── segments.fixture.ts │ │ │ ├── sourcingManager.fixture.ts │ │ │ └── values.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts ├── sourcing │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── LocalSourcingManager.ts │ │ ├── RemoteSourcingManager.ts │ │ ├── SourcingManager.ts │ │ ├── files │ │ │ ├── FileManager.ts │ │ │ ├── LocalFileManager.ts │ │ │ ├── LocalFileSystem.ts │ │ │ ├── RemoteFileManager.ts │ │ │ ├── RemoteFileSystem.ts │ │ │ ├── definitions │ │ │ │ └── Files.ts │ │ │ ├── errors │ │ │ │ ├── FileNotFound.ts │ │ │ │ ├── InvalidLocation.ts │ │ │ │ └── RemoteFilesNotSupported.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── FileReader.ts │ │ │ │ └── FileSystem.ts │ │ │ └── models │ │ │ │ └── File.ts │ │ ├── index.ts │ │ └── modules │ │ │ ├── ImportManager.ts │ │ │ ├── LocalImportManager.ts │ │ │ ├── LocalModuleLocator.ts │ │ │ ├── RemoteImportManager.ts │ │ │ ├── RemoteModuleLocator.ts │ │ │ ├── errors │ │ │ └── ModuleNotLoaded.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ ├── ModuleImporter.ts │ │ │ └── ModuleLocator.ts │ │ │ └── types │ │ │ └── Module.ts │ ├── test │ │ ├── FileManager.spec.ts │ │ ├── SourcingManager.spec.ts │ │ └── fixtures │ │ │ ├── TestFileSystem.ts │ │ │ ├── fileManager.fixture.ts │ │ │ ├── index.ts │ │ │ ├── paths.fixture.ts │ │ │ └── sourcingManager.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts └── validation │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── Validator.ts │ ├── index.ts │ └── types │ │ ├── ValidationResult.ts │ │ └── ValidationScheme.ts │ ├── test │ ├── Validator.spec.ts │ └── fixtures │ │ ├── index.ts │ │ ├── validationSchemes.fixture.ts │ │ └── values.fixture.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tools └── eslint-plugin │ ├── index.js │ └── package.json ├── turbo.json ├── videos ├── .gitignore ├── README.md ├── creating-apps │ ├── CH01 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH02 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH03 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH04 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH05 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 005 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH06 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH07 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── build.sh │ ├── publication │ │ ├── description.txt │ │ └── thumbnail.png │ └── video.json ├── introduction │ ├── CH01 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── 003.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH02 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 005 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 006 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH03 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH04 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH05 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH06 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── build.sh │ ├── publication │ │ ├── banner.png │ │ ├── description.txt │ │ ├── english-captions.sbv │ │ └── thumbnail.png │ └── video.json ├── scaling-apps │ ├── CH01 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH02 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH03 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH04 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH05 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH06 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 005 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 006 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 007 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH07 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 005 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 006 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 007 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 008 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH08 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 003 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 004 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── CH09 │ │ ├── 001 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ ├── 002 │ │ │ ├── frames.pdf │ │ │ └── scene.json │ │ └── chapter.json │ ├── build.sh │ ├── publication │ │ ├── description.txt │ │ └── thumbnail.png │ └── video.json └── securing-apps │ ├── CH01 │ ├── 001 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 002 │ │ ├── frames.pdf │ │ └── scene.json │ └── chapter.json │ ├── CH02 │ ├── 001 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 002 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 003 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 005 │ │ ├── frames.pdf │ │ └── scene.json │ └── chapter.json │ ├── CH03 │ ├── 001 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 002 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 003 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 005 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 006 │ │ ├── frames.pdf │ │ └── scene.json │ └── chapter.json │ ├── CH04 │ ├── 001 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 002 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 003 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004a │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004b │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004c │ │ ├── frames.pdf │ │ └── scene.json │ ├── 004d │ │ ├── frames.pdf │ │ └── scene.json │ ├── 005 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 006 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 007 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 008 │ │ ├── frames.pdf │ │ └── scene.json │ └── chapter.json │ ├── CH05 │ ├── 001 │ │ ├── frames.pdf │ │ └── scene.json │ ├── 002 │ │ ├── frames.pdf │ │ └── scene.json │ └── chapter.json │ ├── build.sh │ ├── publication │ ├── description.txt │ └── thumbnail.png │ └── video.json └── website ├── .gitignore ├── README.md ├── package-lock.json ├── package.json └── src ├── css ├── components │ ├── cards.css │ ├── code.css │ ├── explainer.css │ ├── hero.css │ ├── nav.css │ └── roadmap.css ├── containers │ ├── body.css │ ├── footer.css │ ├── header.css │ └── main.css ├── layout.css └── vars.css ├── fonts ├── poppins │ ├── font.css │ ├── pxiByp8kv8JHgFVrLCz7Z11lFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2 │ ├── pxiByp8kv8JHgFVrLDz8Z11lFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLDz8Z1JlFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLDz8Z1xlFd2JQEk.woff2 │ ├── pxiByp8kv8JHgFVrLEj6Z11lFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff2 │ ├── pxiByp8kv8JHgFVrLFj_Z11lFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLFj_Z1JlFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLFj_Z1xlFd2JQEk.woff2 │ ├── pxiByp8kv8JHgFVrLGT9Z11lFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLGT9Z1JlFd2JQEl8qw.woff2 │ ├── pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff2 │ ├── pxiEyp8kv8JHgFVrJJbecnFHGPezSQ.woff2 │ ├── pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2 │ └── pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2 └── social-icons │ ├── font.css │ ├── icomoon.json │ └── icomoon.woff2 ├── images ├── benefits │ ├── api-automation.svg │ ├── configuration-only.svg │ ├── framework-agnostic.svg │ ├── intellisense.svg │ ├── platform-agnostic.svg │ └── type-safety.svg ├── features │ ├── access-protection.svg │ ├── and-more.svg │ ├── integration.svg │ ├── load-balancing.svg │ ├── multi-version.svg │ ├── orchestration.svg │ ├── segmentation.svg │ └── transportation.svg ├── hero │ ├── illustration.svg │ ├── scribble.svg │ └── stars.svg ├── icon.png ├── introduction │ ├── flow-horizontal.svg │ └── flow-vertical.svg ├── jitar-og.png └── layout │ ├── breaker-bottom.svg │ ├── breaker-top.svg │ └── header.svg ├── index.html ├── robots.txt ├── site.css └── site.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/nodejsci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.github/workflows/nodejsci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .turbo 3 | node_modules 4 | **/*.tgz -------------------------------------------------------------------------------- /.sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/.sonar-project.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/CODING_STANDARDS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /changelog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/changelog.hbs -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /documentation/docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /documentation/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /documentation/docs/about/our-goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/about/our-goal.md -------------------------------------------------------------------------------- /documentation/docs/about/our-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/about/our-team.md -------------------------------------------------------------------------------- /documentation/docs/build/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/build/arguments.md -------------------------------------------------------------------------------- /documentation/docs/build/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/build/configuration.md -------------------------------------------------------------------------------- /documentation/docs/community/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/community/contribute.md -------------------------------------------------------------------------------- /documentation/docs/community/get-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/community/get-help.md -------------------------------------------------------------------------------- /documentation/docs/community/give-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/community/give-feedback.md -------------------------------------------------------------------------------- /documentation/docs/deploy/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/environments.md -------------------------------------------------------------------------------- /documentation/docs/deploy/health-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/health-checks.md -------------------------------------------------------------------------------- /documentation/docs/deploy/load-balancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/load-balancing.md -------------------------------------------------------------------------------- /documentation/docs/deploy/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/resources.md -------------------------------------------------------------------------------- /documentation/docs/deploy/runtime-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/runtime-settings.md -------------------------------------------------------------------------------- /documentation/docs/deploy/segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/deploy/segmentation.md -------------------------------------------------------------------------------- /documentation/docs/develop/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/assets.md -------------------------------------------------------------------------------- /documentation/docs/develop/data-consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/data-consistency.md -------------------------------------------------------------------------------- /documentation/docs/develop/data-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/data-sharing.md -------------------------------------------------------------------------------- /documentation/docs/develop/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/debugging.md -------------------------------------------------------------------------------- /documentation/docs/develop/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/error-handling.md -------------------------------------------------------------------------------- /documentation/docs/develop/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/middleware.md -------------------------------------------------------------------------------- /documentation/docs/develop/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/security.md -------------------------------------------------------------------------------- /documentation/docs/develop/state-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/state-management.md -------------------------------------------------------------------------------- /documentation/docs/develop/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/validation.md -------------------------------------------------------------------------------- /documentation/docs/develop/writing-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/develop/writing-functions.md -------------------------------------------------------------------------------- /documentation/docs/examples/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/examples/concepts.md -------------------------------------------------------------------------------- /documentation/docs/examples/full-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/examples/full-stack.md -------------------------------------------------------------------------------- /documentation/docs/guides/creating-a-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/guides/creating-a-cluster.md -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/docs/integrate/rpc-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/integrate/rpc-api.md -------------------------------------------------------------------------------- /documentation/docs/integrate/vite-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/integrate/vite-plugin.md -------------------------------------------------------------------------------- /documentation/docs/introduction/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/introduction/installation.md -------------------------------------------------------------------------------- /documentation/docs/introduction/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/introduction/quick-start.md -------------------------------------------------------------------------------- /documentation/docs/monitor/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/monitor/health.md -------------------------------------------------------------------------------- /documentation/docs/monitor/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/monitor/logging.md -------------------------------------------------------------------------------- /documentation/docs/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/docs/public/icon.png -------------------------------------------------------------------------------- /documentation/docs/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /documentation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/package-lock.json -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/documentation/package.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | .jitar 2 | dist 3 | node_modules 4 | package-lock.json -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/access-protection/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/.env -------------------------------------------------------------------------------- /examples/access-protection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/README.md -------------------------------------------------------------------------------- /examples/access-protection/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/jitar.json -------------------------------------------------------------------------------- /examples/access-protection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/package.json -------------------------------------------------------------------------------- /examples/access-protection/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/requests.http -------------------------------------------------------------------------------- /examples/access-protection/segments/public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/segments/public.json -------------------------------------------------------------------------------- /examples/access-protection/services/public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/services/public.json -------------------------------------------------------------------------------- /examples/access-protection/src/game/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/src/game/index.ts -------------------------------------------------------------------------------- /examples/access-protection/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/access-protection/tsconfig.json -------------------------------------------------------------------------------- /examples/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/README.md -------------------------------------------------------------------------------- /examples/cors/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/jitar.json -------------------------------------------------------------------------------- /examples/cors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/package.json -------------------------------------------------------------------------------- /examples/cors/requests.http: -------------------------------------------------------------------------------- 1 | 2 | GET http://localhost:3000/rpc/getWeatherForecast HTTP/1.1 3 | -------------------------------------------------------------------------------- /examples/cors/segments/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/segments/server.json -------------------------------------------------------------------------------- /examples/cors/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/services/standalone.json -------------------------------------------------------------------------------- /examples/cors/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/src/app.ts -------------------------------------------------------------------------------- /examples/cors/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/src/client.ts -------------------------------------------------------------------------------- /examples/cors/src/getWeatherForecast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/src/getWeatherForecast.ts -------------------------------------------------------------------------------- /examples/cors/src/handleCors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/src/handleCors.ts -------------------------------------------------------------------------------- /examples/cors/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/src/index.html -------------------------------------------------------------------------------- /examples/cors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/cors/tsconfig.json -------------------------------------------------------------------------------- /examples/data-transportation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/data-transportation/README.md -------------------------------------------------------------------------------- /examples/data-transportation/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/data-transportation/jitar.json -------------------------------------------------------------------------------- /examples/data-transportation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/data-transportation/package.json -------------------------------------------------------------------------------- /examples/data-transportation/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/data-transportation/requests.http -------------------------------------------------------------------------------- /examples/data-transportation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/data-transportation/tsconfig.json -------------------------------------------------------------------------------- /examples/error-handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/README.md -------------------------------------------------------------------------------- /examples/error-handling/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/jitar.json -------------------------------------------------------------------------------- /examples/error-handling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/package.json -------------------------------------------------------------------------------- /examples/error-handling/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/requests.http -------------------------------------------------------------------------------- /examples/error-handling/segments/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/segments/data.json -------------------------------------------------------------------------------- /examples/error-handling/segments/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/segments/process.json -------------------------------------------------------------------------------- /examples/error-handling/services/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/services/data.json -------------------------------------------------------------------------------- /examples/error-handling/services/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/services/gateway.json -------------------------------------------------------------------------------- /examples/error-handling/services/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/services/process.json -------------------------------------------------------------------------------- /examples/error-handling/src/DatabaseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/src/DatabaseError.ts -------------------------------------------------------------------------------- /examples/error-handling/src/exportData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/src/exportData.ts -------------------------------------------------------------------------------- /examples/error-handling/src/getData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/src/getData.ts -------------------------------------------------------------------------------- /examples/error-handling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/error-handling/tsconfig.json -------------------------------------------------------------------------------- /examples/health-checks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/README.md -------------------------------------------------------------------------------- /examples/health-checks/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/jitar.json -------------------------------------------------------------------------------- /examples/health-checks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/package.json -------------------------------------------------------------------------------- /examples/health-checks/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/requests.http -------------------------------------------------------------------------------- /examples/health-checks/segments/default.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /examples/health-checks/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/services/standalone.json -------------------------------------------------------------------------------- /examples/health-checks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/health-checks/tsconfig.json -------------------------------------------------------------------------------- /examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/README.md -------------------------------------------------------------------------------- /examples/hello-world/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/jitar.json -------------------------------------------------------------------------------- /examples/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/package.json -------------------------------------------------------------------------------- /examples/hello-world/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/requests.http -------------------------------------------------------------------------------- /examples/hello-world/segments/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/segments/default.json -------------------------------------------------------------------------------- /examples/hello-world/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/services/standalone.json -------------------------------------------------------------------------------- /examples/hello-world/src/sayHello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/src/sayHello.ts -------------------------------------------------------------------------------- /examples/hello-world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/hello-world/tsconfig.json -------------------------------------------------------------------------------- /examples/load-balancing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/README.md -------------------------------------------------------------------------------- /examples/load-balancing/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/jitar.json -------------------------------------------------------------------------------- /examples/load-balancing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/package.json -------------------------------------------------------------------------------- /examples/load-balancing/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/requests.http -------------------------------------------------------------------------------- /examples/load-balancing/services/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/services/gateway.json -------------------------------------------------------------------------------- /examples/load-balancing/services/worker1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/services/worker1.json -------------------------------------------------------------------------------- /examples/load-balancing/services/worker2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/services/worker2.json -------------------------------------------------------------------------------- /examples/load-balancing/src/calculator/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/src/calculator/add.ts -------------------------------------------------------------------------------- /examples/load-balancing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/load-balancing/tsconfig.json -------------------------------------------------------------------------------- /examples/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/README.md -------------------------------------------------------------------------------- /examples/middleware/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/jitar.json -------------------------------------------------------------------------------- /examples/middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/package.json -------------------------------------------------------------------------------- /examples/middleware/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/requests.http -------------------------------------------------------------------------------- /examples/middleware/segments/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/segments/default.json -------------------------------------------------------------------------------- /examples/middleware/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/services/standalone.json -------------------------------------------------------------------------------- /examples/middleware/src/argumentMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/argumentMiddleware.ts -------------------------------------------------------------------------------- /examples/middleware/src/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/hello.ts -------------------------------------------------------------------------------- /examples/middleware/src/loggingMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/loggingMiddleware.ts -------------------------------------------------------------------------------- /examples/middleware/src/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/ping.ts -------------------------------------------------------------------------------- /examples/middleware/src/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/redirect.ts -------------------------------------------------------------------------------- /examples/middleware/src/redirectMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/src/redirectMiddleware.ts -------------------------------------------------------------------------------- /examples/middleware/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/middleware/tsconfig.json -------------------------------------------------------------------------------- /examples/multi-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/README.md -------------------------------------------------------------------------------- /examples/multi-version/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/jitar.json -------------------------------------------------------------------------------- /examples/multi-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/package.json -------------------------------------------------------------------------------- /examples/multi-version/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/requests.http -------------------------------------------------------------------------------- /examples/multi-version/segments/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/segments/default.json -------------------------------------------------------------------------------- /examples/multi-version/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/services/standalone.json -------------------------------------------------------------------------------- /examples/multi-version/src/getEmployee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/src/getEmployee.ts -------------------------------------------------------------------------------- /examples/multi-version/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/multi-version/tsconfig.json -------------------------------------------------------------------------------- /examples/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/README.md -------------------------------------------------------------------------------- /examples/resources/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/jitar.json -------------------------------------------------------------------------------- /examples/resources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/package.json -------------------------------------------------------------------------------- /examples/resources/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/requests.http -------------------------------------------------------------------------------- /examples/resources/resources/database.json: -------------------------------------------------------------------------------- 1 | [ 2 | "./database" 3 | ] -------------------------------------------------------------------------------- /examples/resources/segments/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/segments/default.json -------------------------------------------------------------------------------- /examples/resources/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/services/standalone.json -------------------------------------------------------------------------------- /examples/resources/src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/src/database.ts -------------------------------------------------------------------------------- /examples/resources/src/getData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/src/getData.ts -------------------------------------------------------------------------------- /examples/resources/src/setUpDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/src/setUpDatabase.ts -------------------------------------------------------------------------------- /examples/resources/src/tearDownDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/src/tearDownDatabase.ts -------------------------------------------------------------------------------- /examples/resources/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/resources/tsconfig.json -------------------------------------------------------------------------------- /examples/segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/README.md -------------------------------------------------------------------------------- /examples/segmentation/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/jitar.json -------------------------------------------------------------------------------- /examples/segmentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/package.json -------------------------------------------------------------------------------- /examples/segmentation/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/requests.http -------------------------------------------------------------------------------- /examples/segmentation/segments/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/segments/data.json -------------------------------------------------------------------------------- /examples/segmentation/segments/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/segments/process.json -------------------------------------------------------------------------------- /examples/segmentation/services/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/services/data.json -------------------------------------------------------------------------------- /examples/segmentation/services/gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/services/gateway.json -------------------------------------------------------------------------------- /examples/segmentation/services/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/services/process.json -------------------------------------------------------------------------------- /examples/segmentation/services/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/services/standalone.json -------------------------------------------------------------------------------- /examples/segmentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/examples/segmentation/tsconfig.json -------------------------------------------------------------------------------- /migrations/migrate-from-0.3.x-to-0.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.3.x-to-0.4.0.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.4.0-to-0.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.4.0-to-0.4.1.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.4.x-to-0.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.4.x-to-0.5.0.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.5.x-to-0.6.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.5.x-to-0.6.x.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.6.x-to-0.7.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.6.x-to-0.7.x.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.7.x-to-0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.7.x-to-0.8.0.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.8.x-to-0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.8.x-to-0.9.0.md -------------------------------------------------------------------------------- /migrations/migrate-from-0.9.x-to-0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/migrations/migrate-from-0.9.x-to-0.10.0.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | cache 4 | .jitar 5 | node_modules 6 | **/*.tgz -------------------------------------------------------------------------------- /packages/analysis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/CHANGELOG.md -------------------------------------------------------------------------------- /packages/analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/README.md -------------------------------------------------------------------------------- /packages/analysis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/package.json -------------------------------------------------------------------------------- /packages/analysis/src/dynamic/ClassMerger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/dynamic/ClassMerger.ts -------------------------------------------------------------------------------- /packages/analysis/src/dynamic/Reflector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/dynamic/Reflector.ts -------------------------------------------------------------------------------- /packages/analysis/src/dynamic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/dynamic/index.ts -------------------------------------------------------------------------------- /packages/analysis/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/index.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESAlias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESAlias.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESArray.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESClass.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESDeclaration.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESExport.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESExpression.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESField.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESFunction.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESGenerator.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESGetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESGetter.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESIdentifier.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESImport.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESMember.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESModule.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESObject.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESParameter.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESScope.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESSetter.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/ESValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/ESValue.ts -------------------------------------------------------------------------------- /packages/analysis/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/models/index.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/Lexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/Lexer.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/Parser.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/index.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/models/CharList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/models/CharList.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/models/ItemList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/models/ItemList.ts -------------------------------------------------------------------------------- /packages/analysis/src/static/models/Token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/src/static/models/Token.ts -------------------------------------------------------------------------------- /packages/analysis/test/models/ESClass.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/models/ESClass.spec.ts -------------------------------------------------------------------------------- /packages/analysis/test/models/ESModule.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/models/ESModule.spec.ts -------------------------------------------------------------------------------- /packages/analysis/test/models/ESScope.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/models/ESScope.spec.ts -------------------------------------------------------------------------------- /packages/analysis/test/models/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/models/fixtures/index.ts -------------------------------------------------------------------------------- /packages/analysis/test/static/Lexer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/static/Lexer.spec.ts -------------------------------------------------------------------------------- /packages/analysis/test/static/Parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/static/Parser.spec.ts -------------------------------------------------------------------------------- /packages/analysis/test/static/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/test/static/fixtures/index.ts -------------------------------------------------------------------------------- /packages/analysis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/tsconfig.json -------------------------------------------------------------------------------- /packages/analysis/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/analysis/vite.config.ts -------------------------------------------------------------------------------- /packages/build/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/CHANGELOG.md -------------------------------------------------------------------------------- /packages/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/README.md -------------------------------------------------------------------------------- /packages/build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/package.json -------------------------------------------------------------------------------- /packages/build/src/BuildManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/BuildManager.ts -------------------------------------------------------------------------------- /packages/build/src/ProjectFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/ProjectFileManager.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/Defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/Defaults.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/Files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/Files.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/Keywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/Keywords.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/Patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/Patterns.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/Values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/Values.ts -------------------------------------------------------------------------------- /packages/build/src/definitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/definitions/index.ts -------------------------------------------------------------------------------- /packages/build/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/application/Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/application/Reader.ts -------------------------------------------------------------------------------- /packages/build/src/source/application/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/application/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/module/Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/module/Reader.ts -------------------------------------------------------------------------------- /packages/build/src/source/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/module/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/resource/Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/resource/Reader.ts -------------------------------------------------------------------------------- /packages/build/src/source/resource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/resource/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/segment/Reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/segment/Reader.ts -------------------------------------------------------------------------------- /packages/build/src/source/segment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/segment/index.ts -------------------------------------------------------------------------------- /packages/build/src/source/segment/types/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/source/segment/types/File.ts -------------------------------------------------------------------------------- /packages/build/src/target/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/target/index.ts -------------------------------------------------------------------------------- /packages/build/src/target/module/Builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/target/module/Builder.ts -------------------------------------------------------------------------------- /packages/build/src/target/segment/Builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/target/segment/Builder.ts -------------------------------------------------------------------------------- /packages/build/src/utils/FileHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/utils/FileHelper.ts -------------------------------------------------------------------------------- /packages/build/src/utils/IdGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/utils/IdGenerator.ts -------------------------------------------------------------------------------- /packages/build/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/src/utils/index.ts -------------------------------------------------------------------------------- /packages/build/test/dummy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/test/dummy.spec.ts -------------------------------------------------------------------------------- /packages/build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/tsconfig.json -------------------------------------------------------------------------------- /packages/build/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/build/vite.config.ts -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/ArgumentProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/ArgumentProcessor.ts -------------------------------------------------------------------------------- /packages/cli/src/Cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/Cli.ts -------------------------------------------------------------------------------- /packages/cli/src/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/Command.ts -------------------------------------------------------------------------------- /packages/cli/src/CommandRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/CommandRunner.ts -------------------------------------------------------------------------------- /packages/cli/src/Option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/Option.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/BuildApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/BuildApp.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/InitApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/InitApp.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/ShowAbout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/ShowAbout.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/ShowHelp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/ShowHelp.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/ShowVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/ShowVersion.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/StartServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/commands/StartServer.ts -------------------------------------------------------------------------------- /packages/cli/src/errors/CommandNotFound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/errors/CommandNotFound.ts -------------------------------------------------------------------------------- /packages/cli/src/errors/MissingArgument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/src/errors/MissingArgument.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export { default as Cli } from './Cli'; 3 | -------------------------------------------------------------------------------- /packages/cli/test/ArgumentProcessor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/test/ArgumentProcessor.spec.ts -------------------------------------------------------------------------------- /packages/cli/test/fixtures/arguments.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/test/fixtures/arguments.fixture.ts -------------------------------------------------------------------------------- /packages/cli/test/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './arguments.fixture'; 3 | -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/cli/vite.config.ts -------------------------------------------------------------------------------- /packages/configuration/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/CHANGELOG.md -------------------------------------------------------------------------------- /packages/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/README.md -------------------------------------------------------------------------------- /packages/configuration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/package.json -------------------------------------------------------------------------------- /packages/configuration/src/environment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/src/environment/index.ts -------------------------------------------------------------------------------- /packages/configuration/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/src/index.ts -------------------------------------------------------------------------------- /packages/configuration/src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/src/runtime/index.ts -------------------------------------------------------------------------------- /packages/configuration/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/src/server/index.ts -------------------------------------------------------------------------------- /packages/configuration/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/src/utils/index.ts -------------------------------------------------------------------------------- /packages/configuration/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/configuration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/tsconfig.json -------------------------------------------------------------------------------- /packages/configuration/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/configuration/vite.config.ts -------------------------------------------------------------------------------- /packages/create-jitar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/create-jitar/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-jitar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/create-jitar/README.md -------------------------------------------------------------------------------- /packages/create-jitar/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import './dist/index.js'; 4 | -------------------------------------------------------------------------------- /packages/create-jitar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/create-jitar/package.json -------------------------------------------------------------------------------- /packages/create-jitar/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/create-jitar/src/index.ts -------------------------------------------------------------------------------- /packages/create-jitar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/create-jitar/tsconfig.json -------------------------------------------------------------------------------- /packages/errors/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/CHANGELOG.md -------------------------------------------------------------------------------- /packages/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/README.md -------------------------------------------------------------------------------- /packages/errors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/package.json -------------------------------------------------------------------------------- /packages/errors/src/BadRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/BadRequest.ts -------------------------------------------------------------------------------- /packages/errors/src/Forbidden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/Forbidden.ts -------------------------------------------------------------------------------- /packages/errors/src/NotFound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/NotFound.ts -------------------------------------------------------------------------------- /packages/errors/src/NotImplemented.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/NotImplemented.ts -------------------------------------------------------------------------------- /packages/errors/src/PaymentRequired.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/PaymentRequired.ts -------------------------------------------------------------------------------- /packages/errors/src/ServerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/ServerError.ts -------------------------------------------------------------------------------- /packages/errors/src/Teapot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/Teapot.ts -------------------------------------------------------------------------------- /packages/errors/src/Unauthorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/Unauthorized.ts -------------------------------------------------------------------------------- /packages/errors/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/src/index.ts -------------------------------------------------------------------------------- /packages/errors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/errors/tsconfig.json -------------------------------------------------------------------------------- /packages/execution/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/CHANGELOG.md -------------------------------------------------------------------------------- /packages/execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/README.md -------------------------------------------------------------------------------- /packages/execution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/package.json -------------------------------------------------------------------------------- /packages/execution/src/ExecutionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/ExecutionManager.ts -------------------------------------------------------------------------------- /packages/execution/src/definitions/RunModes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/definitions/RunModes.ts -------------------------------------------------------------------------------- /packages/execution/src/errors/InvalidSegment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/errors/InvalidSegment.ts -------------------------------------------------------------------------------- /packages/execution/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/index.ts -------------------------------------------------------------------------------- /packages/execution/src/interfaces/Runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/interfaces/Runner.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Application.ts -------------------------------------------------------------------------------- /packages/execution/src/models/ArrayParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/ArrayParameter.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Class.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Implementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Implementation.ts -------------------------------------------------------------------------------- /packages/execution/src/models/NamedParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/NamedParameter.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Parameter.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Procedure.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Request.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Response.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Segment.ts -------------------------------------------------------------------------------- /packages/execution/src/models/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/models/Version.ts -------------------------------------------------------------------------------- /packages/execution/src/utils/ErrorConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/utils/ErrorConverter.ts -------------------------------------------------------------------------------- /packages/execution/src/utils/VersionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/src/utils/VersionParser.ts -------------------------------------------------------------------------------- /packages/execution/test/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './executionManagers.fixture'; 3 | -------------------------------------------------------------------------------- /packages/execution/test/models/Segment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/test/models/Segment.spec.ts -------------------------------------------------------------------------------- /packages/execution/test/models/Version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/test/models/Version.spec.ts -------------------------------------------------------------------------------- /packages/execution/test/utils/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/test/utils/fixtures/index.ts -------------------------------------------------------------------------------- /packages/execution/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/tsconfig.json -------------------------------------------------------------------------------- /packages/execution/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/execution/vite.config.ts -------------------------------------------------------------------------------- /packages/health/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/CHANGELOG.md -------------------------------------------------------------------------------- /packages/health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/README.md -------------------------------------------------------------------------------- /packages/health/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/package.json -------------------------------------------------------------------------------- /packages/health/src/HealthManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/src/HealthManager.ts -------------------------------------------------------------------------------- /packages/health/src/definitions/States.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/src/definitions/States.ts -------------------------------------------------------------------------------- /packages/health/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/src/index.ts -------------------------------------------------------------------------------- /packages/health/src/interfaces/HealthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/src/interfaces/HealthCheck.ts -------------------------------------------------------------------------------- /packages/health/test/HealthManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/test/HealthManager.spec.ts -------------------------------------------------------------------------------- /packages/health/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/health/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/tsconfig.json -------------------------------------------------------------------------------- /packages/health/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/health/vite.config.ts -------------------------------------------------------------------------------- /packages/http/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/CHANGELOG.md -------------------------------------------------------------------------------- /packages/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/README.md -------------------------------------------------------------------------------- /packages/http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/package.json -------------------------------------------------------------------------------- /packages/http/src/FetchHttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/FetchHttpClient.ts -------------------------------------------------------------------------------- /packages/http/src/HttpRemote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/HttpRemote.ts -------------------------------------------------------------------------------- /packages/http/src/HttpRemoteBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/HttpRemoteBuilder.ts -------------------------------------------------------------------------------- /packages/http/src/HttpServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/HttpServer.ts -------------------------------------------------------------------------------- /packages/http/src/definitions/Defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/definitions/Defaults.ts -------------------------------------------------------------------------------- /packages/http/src/definitions/HeaderKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/definitions/HeaderKeys.ts -------------------------------------------------------------------------------- /packages/http/src/definitions/HeaderValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/definitions/HeaderValues.ts -------------------------------------------------------------------------------- /packages/http/src/errors/InvalidWorkerId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/errors/InvalidWorkerId.ts -------------------------------------------------------------------------------- /packages/http/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/index.ts -------------------------------------------------------------------------------- /packages/http/src/interfaces/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/interfaces/HttpClient.ts -------------------------------------------------------------------------------- /packages/http/src/middleware/CorsMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/src/middleware/CorsMiddleware.ts -------------------------------------------------------------------------------- /packages/http/test/HttpRemote.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/test/HttpRemote.spec.ts -------------------------------------------------------------------------------- /packages/http/test/HttpServer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/test/HttpServer.spec.ts -------------------------------------------------------------------------------- /packages/http/test/fixtures/TestHttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/test/fixtures/TestHttpClient.ts -------------------------------------------------------------------------------- /packages/http/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/http/test/fixtures/values.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/test/fixtures/values.fixtures.ts -------------------------------------------------------------------------------- /packages/http/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/tsconfig.json -------------------------------------------------------------------------------- /packages/http/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/http/vite.config.ts -------------------------------------------------------------------------------- /packages/init/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/CHANGELOG.md -------------------------------------------------------------------------------- /packages/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/README.md -------------------------------------------------------------------------------- /packages/init/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/package.json -------------------------------------------------------------------------------- /packages/init/src/InitManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/src/InitManager.ts -------------------------------------------------------------------------------- /packages/init/src/errors/InvalidName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/src/errors/InvalidName.ts -------------------------------------------------------------------------------- /packages/init/src/errors/UnknownTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/src/errors/UnknownTemplate.ts -------------------------------------------------------------------------------- /packages/init/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/src/index.ts -------------------------------------------------------------------------------- /packages/init/templates/backend/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/backend/_gitignore -------------------------------------------------------------------------------- /packages/init/templates/backend/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/backend/jitar.json -------------------------------------------------------------------------------- /packages/init/templates/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/backend/package.json -------------------------------------------------------------------------------- /packages/init/templates/backend/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/backend/requests.http -------------------------------------------------------------------------------- /packages/init/templates/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/backend/tsconfig.json -------------------------------------------------------------------------------- /packages/init/templates/react/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/_gitignore -------------------------------------------------------------------------------- /packages/init/templates/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/index.html -------------------------------------------------------------------------------- /packages/init/templates/react/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/jitar.json -------------------------------------------------------------------------------- /packages/init/templates/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/package.json -------------------------------------------------------------------------------- /packages/init/templates/react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/public/vite.svg -------------------------------------------------------------------------------- /packages/init/templates/react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/init/templates/react/src/webui/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/src/webui/App.css -------------------------------------------------------------------------------- /packages/init/templates/react/src/webui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/src/webui/App.tsx -------------------------------------------------------------------------------- /packages/init/templates/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/tsconfig.json -------------------------------------------------------------------------------- /packages/init/templates/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/react/vite.config.ts -------------------------------------------------------------------------------- /packages/init/templates/vue/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/_gitignore -------------------------------------------------------------------------------- /packages/init/templates/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/index.html -------------------------------------------------------------------------------- /packages/init/templates/vue/jitar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/jitar.json -------------------------------------------------------------------------------- /packages/init/templates/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/package.json -------------------------------------------------------------------------------- /packages/init/templates/vue/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/public/vite.svg -------------------------------------------------------------------------------- /packages/init/templates/vue/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/init/templates/vue/src/webui/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/src/webui/App.vue -------------------------------------------------------------------------------- /packages/init/templates/vue/src/webui/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/src/webui/main.ts -------------------------------------------------------------------------------- /packages/init/templates/vue/src/webui/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/src/webui/style.css -------------------------------------------------------------------------------- /packages/init/templates/vue/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/tsconfig.build.json -------------------------------------------------------------------------------- /packages/init/templates/vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/tsconfig.json -------------------------------------------------------------------------------- /packages/init/templates/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/templates/vue/vite.config.ts -------------------------------------------------------------------------------- /packages/init/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/tsconfig.json -------------------------------------------------------------------------------- /packages/init/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/init/vite.config.ts -------------------------------------------------------------------------------- /packages/jitar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/CHANGELOG.md -------------------------------------------------------------------------------- /packages/jitar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/README.md -------------------------------------------------------------------------------- /packages/jitar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/package.json -------------------------------------------------------------------------------- /packages/jitar/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/rollup.config.js -------------------------------------------------------------------------------- /packages/jitar/rollup.definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/rollup.definitions.js -------------------------------------------------------------------------------- /packages/jitar/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/src/cli.ts -------------------------------------------------------------------------------- /packages/jitar/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/src/client.ts -------------------------------------------------------------------------------- /packages/jitar/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/src/lib.ts -------------------------------------------------------------------------------- /packages/jitar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/tsconfig.json -------------------------------------------------------------------------------- /packages/jitar/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/jitar/vite.config.ts -------------------------------------------------------------------------------- /packages/logging/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/CHANGELOG.md -------------------------------------------------------------------------------- /packages/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/README.md -------------------------------------------------------------------------------- /packages/logging/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/package.json -------------------------------------------------------------------------------- /packages/logging/src/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/Logger.ts -------------------------------------------------------------------------------- /packages/logging/src/Writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/Writer.ts -------------------------------------------------------------------------------- /packages/logging/src/definitions/LogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/definitions/LogLevel.ts -------------------------------------------------------------------------------- /packages/logging/src/errors/InvalidLogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/errors/InvalidLogLevel.ts -------------------------------------------------------------------------------- /packages/logging/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/index.ts -------------------------------------------------------------------------------- /packages/logging/src/utils/LogLevelParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/src/utils/LogLevelParser.ts -------------------------------------------------------------------------------- /packages/logging/test/Logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/test/Logger.spec.ts -------------------------------------------------------------------------------- /packages/logging/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/logging/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/tsconfig.json -------------------------------------------------------------------------------- /packages/logging/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/logging/vite.config.ts -------------------------------------------------------------------------------- /packages/middleware/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/CHANGELOG.md -------------------------------------------------------------------------------- /packages/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/README.md -------------------------------------------------------------------------------- /packages/middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/package.json -------------------------------------------------------------------------------- /packages/middleware/src/MiddlewareManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/src/MiddlewareManager.ts -------------------------------------------------------------------------------- /packages/middleware/src/definitions/States.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/src/definitions/States.ts -------------------------------------------------------------------------------- /packages/middleware/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/src/index.ts -------------------------------------------------------------------------------- /packages/middleware/src/types/NextHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/src/types/NextHandler.ts -------------------------------------------------------------------------------- /packages/middleware/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/middleware/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/tsconfig.json -------------------------------------------------------------------------------- /packages/middleware/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/middleware/vite.config.ts -------------------------------------------------------------------------------- /packages/plugin-vite/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/plugin-vite/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugin-vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/plugin-vite/README.md -------------------------------------------------------------------------------- /packages/plugin-vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/plugin-vite/package.json -------------------------------------------------------------------------------- /packages/plugin-vite/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/plugin-vite/src/index.ts -------------------------------------------------------------------------------- /packages/plugin-vite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/plugin-vite/tsconfig.json -------------------------------------------------------------------------------- /packages/runtime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/CHANGELOG.md -------------------------------------------------------------------------------- /packages/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/README.md -------------------------------------------------------------------------------- /packages/runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/package.json -------------------------------------------------------------------------------- /packages/runtime/src/ProcedureRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/ProcedureRunner.ts -------------------------------------------------------------------------------- /packages/runtime/src/Runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/Runtime.ts -------------------------------------------------------------------------------- /packages/runtime/src/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/client/Client.ts -------------------------------------------------------------------------------- /packages/runtime/src/client/ClientBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/client/ClientBuilder.ts -------------------------------------------------------------------------------- /packages/runtime/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/index.ts -------------------------------------------------------------------------------- /packages/runtime/src/server/ResourceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/server/ResourceManager.ts -------------------------------------------------------------------------------- /packages/runtime/src/server/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/server/Server.ts -------------------------------------------------------------------------------- /packages/runtime/src/server/ServerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/server/ServerBuilder.ts -------------------------------------------------------------------------------- /packages/runtime/src/server/types/RunRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/src/server/types/RunRequest.ts -------------------------------------------------------------------------------- /packages/runtime/test/dummy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/test/dummy.spec.ts -------------------------------------------------------------------------------- /packages/runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/tsconfig.json -------------------------------------------------------------------------------- /packages/runtime/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/runtime/vite.config.ts -------------------------------------------------------------------------------- /packages/scheduling/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/CHANGELOG.md -------------------------------------------------------------------------------- /packages/scheduling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/README.md -------------------------------------------------------------------------------- /packages/scheduling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/package.json -------------------------------------------------------------------------------- /packages/scheduling/src/ScheduleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/src/ScheduleManager.ts -------------------------------------------------------------------------------- /packages/scheduling/src/ScheduledTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/src/ScheduledTask.ts -------------------------------------------------------------------------------- /packages/scheduling/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/src/index.ts -------------------------------------------------------------------------------- /packages/scheduling/src/types/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/src/types/Task.ts -------------------------------------------------------------------------------- /packages/scheduling/test/dummy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/test/dummy.spec.ts -------------------------------------------------------------------------------- /packages/scheduling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/tsconfig.json -------------------------------------------------------------------------------- /packages/scheduling/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/scheduling/vite.config.ts -------------------------------------------------------------------------------- /packages/serialization/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/CHANGELOG.md -------------------------------------------------------------------------------- /packages/serialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/README.md -------------------------------------------------------------------------------- /packages/serialization/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/package.json -------------------------------------------------------------------------------- /packages/serialization/src/Serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/Serializer.ts -------------------------------------------------------------------------------- /packages/serialization/src/SerializerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/SerializerBuilder.ts -------------------------------------------------------------------------------- /packages/serialization/src/ValueSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/ValueSerializer.ts -------------------------------------------------------------------------------- /packages/serialization/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/index.ts -------------------------------------------------------------------------------- /packages/serialization/src/types/Resolvable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/types/Resolvable.ts -------------------------------------------------------------------------------- /packages/serialization/src/types/Serialized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/types/Serialized.ts -------------------------------------------------------------------------------- /packages/serialization/src/types/TypedArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/src/types/TypedArray.ts -------------------------------------------------------------------------------- /packages/serialization/test/Serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/test/Serializer.spec.ts -------------------------------------------------------------------------------- /packages/serialization/test/fixtures/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './serializers.fixture'; 3 | -------------------------------------------------------------------------------- /packages/serialization/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/serialization/tsconfig.json -------------------------------------------------------------------------------- /packages/services/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/CHANGELOG.md -------------------------------------------------------------------------------- /packages/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/README.md -------------------------------------------------------------------------------- /packages/services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/package.json -------------------------------------------------------------------------------- /packages/services/src/ProviderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/ProviderService.ts -------------------------------------------------------------------------------- /packages/services/src/RunnerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/RunnerService.ts -------------------------------------------------------------------------------- /packages/services/src/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/Service.ts -------------------------------------------------------------------------------- /packages/services/src/common/Remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/common/Remote.ts -------------------------------------------------------------------------------- /packages/services/src/common/RemoteBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/common/RemoteBuilder.ts -------------------------------------------------------------------------------- /packages/services/src/common/RequestPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/common/RequestPool.ts -------------------------------------------------------------------------------- /packages/services/src/common/StateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/common/StateManager.ts -------------------------------------------------------------------------------- /packages/services/src/dummy/DummyProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/dummy/DummyProvider.ts -------------------------------------------------------------------------------- /packages/services/src/dummy/DummyRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/dummy/DummyRunner.ts -------------------------------------------------------------------------------- /packages/services/src/gateway/Gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/gateway/Gateway.ts -------------------------------------------------------------------------------- /packages/services/src/gateway/LocalGateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/gateway/LocalGateway.ts -------------------------------------------------------------------------------- /packages/services/src/gateway/RemoteGateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/gateway/RemoteGateway.ts -------------------------------------------------------------------------------- /packages/services/src/gateway/WorkerBalancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/gateway/WorkerBalancer.ts -------------------------------------------------------------------------------- /packages/services/src/gateway/WorkerManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/gateway/WorkerManager.ts -------------------------------------------------------------------------------- /packages/services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/index.ts -------------------------------------------------------------------------------- /packages/services/src/proxy/LocalProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/proxy/LocalProxy.ts -------------------------------------------------------------------------------- /packages/services/src/repository/Repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/repository/Repository.ts -------------------------------------------------------------------------------- /packages/services/src/worker/LocalWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/worker/LocalWorker.ts -------------------------------------------------------------------------------- /packages/services/src/worker/RemoteWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/worker/RemoteWorker.ts -------------------------------------------------------------------------------- /packages/services/src/worker/Worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/src/worker/Worker.ts -------------------------------------------------------------------------------- /packages/services/test/worker/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/test/worker/fixtures/index.ts -------------------------------------------------------------------------------- /packages/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/tsconfig.json -------------------------------------------------------------------------------- /packages/services/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/services/vite.config.ts -------------------------------------------------------------------------------- /packages/sourcing/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sourcing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/README.md -------------------------------------------------------------------------------- /packages/sourcing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/package.json -------------------------------------------------------------------------------- /packages/sourcing/src/SourcingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/SourcingManager.ts -------------------------------------------------------------------------------- /packages/sourcing/src/files/FileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/files/FileManager.ts -------------------------------------------------------------------------------- /packages/sourcing/src/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/files/index.ts -------------------------------------------------------------------------------- /packages/sourcing/src/files/models/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/files/models/File.ts -------------------------------------------------------------------------------- /packages/sourcing/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/index.ts -------------------------------------------------------------------------------- /packages/sourcing/src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/src/modules/index.ts -------------------------------------------------------------------------------- /packages/sourcing/test/FileManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/test/FileManager.spec.ts -------------------------------------------------------------------------------- /packages/sourcing/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/sourcing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/tsconfig.json -------------------------------------------------------------------------------- /packages/sourcing/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/sourcing/vite.config.ts -------------------------------------------------------------------------------- /packages/validation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/CHANGELOG.md -------------------------------------------------------------------------------- /packages/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/README.md -------------------------------------------------------------------------------- /packages/validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/package.json -------------------------------------------------------------------------------- /packages/validation/src/Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/src/Validator.ts -------------------------------------------------------------------------------- /packages/validation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/src/index.ts -------------------------------------------------------------------------------- /packages/validation/test/Validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/test/Validator.spec.ts -------------------------------------------------------------------------------- /packages/validation/test/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/test/fixtures/index.ts -------------------------------------------------------------------------------- /packages/validation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/tsconfig.json -------------------------------------------------------------------------------- /packages/validation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/packages/validation/vite.config.ts -------------------------------------------------------------------------------- /tools/eslint-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/tools/eslint-plugin/index.js -------------------------------------------------------------------------------- /tools/eslint-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/tools/eslint-plugin/package.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/turbo.json -------------------------------------------------------------------------------- /videos/.gitignore: -------------------------------------------------------------------------------- 1 | .video -------------------------------------------------------------------------------- /videos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/README.md -------------------------------------------------------------------------------- /videos/creating-apps/CH01/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH01/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH01/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH01/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH01/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH01/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH01/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH01/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH01/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH01/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH02/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH02/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH02/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH02/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH02/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/003/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH02/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/003/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH02/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH02/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH03/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH03/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH03/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH03/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH03/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/003/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH03/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/003/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH03/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/004/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH03/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/004/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH03/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH03/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH04/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH04/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH04/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH04/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH04/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/003/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH04/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/003/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH04/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH04/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH05/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH05/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/003/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH05/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/003/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/004/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH05/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/004/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/005/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH05/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/005/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH05/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH05/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH06/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH06/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH06/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH06/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH06/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/003/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH06/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/003/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH06/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH06/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/CH07/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH07/001/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH07/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH07/001/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH07/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH07/002/frames.pdf -------------------------------------------------------------------------------- /videos/creating-apps/CH07/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH07/002/scene.json -------------------------------------------------------------------------------- /videos/creating-apps/CH07/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/CH07/chapter.json -------------------------------------------------------------------------------- /videos/creating-apps/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/build.sh -------------------------------------------------------------------------------- /videos/creating-apps/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/creating-apps/video.json -------------------------------------------------------------------------------- /videos/introduction/CH01/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH01/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH01/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH01/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH01/003/003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/003/003.pdf -------------------------------------------------------------------------------- /videos/introduction/CH01/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH01/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH01/chapter.json -------------------------------------------------------------------------------- /videos/introduction/CH02/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/003/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/004/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/004/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/005/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/005/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/006/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/006/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH02/006/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/006/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH02/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH02/chapter.json -------------------------------------------------------------------------------- /videos/introduction/CH03/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH03/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH03/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH03/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH03/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/003/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH03/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH03/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH03/chapter.json -------------------------------------------------------------------------------- /videos/introduction/CH04/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH04/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH04/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH04/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH04/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/003/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH04/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH04/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH04/chapter.json -------------------------------------------------------------------------------- /videos/introduction/CH05/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH05/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH05/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH05/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH05/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/003/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH05/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH05/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH05/chapter.json -------------------------------------------------------------------------------- /videos/introduction/CH06/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/001/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH06/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/001/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH06/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/002/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH06/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/002/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH06/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/003/frames.pdf -------------------------------------------------------------------------------- /videos/introduction/CH06/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/003/scene.json -------------------------------------------------------------------------------- /videos/introduction/CH06/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/CH06/chapter.json -------------------------------------------------------------------------------- /videos/introduction/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/build.sh -------------------------------------------------------------------------------- /videos/introduction/publication/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/publication/banner.png -------------------------------------------------------------------------------- /videos/introduction/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/introduction/video.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH01/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH01/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH01/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH01/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH01/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH01/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH01/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH01/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH01/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH01/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH02/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH02/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH03/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH03/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH04/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH04/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH05/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH05/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/005/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/005/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/006/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/006/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/006/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/006/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/007/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/007/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/007/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/007/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH06/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH06/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/005/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/005/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/006/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/006/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/006/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/006/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/007/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/007/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/007/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/007/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/008/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/008/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/008/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/008/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH07/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH07/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/003/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/003/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/004/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/004/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH08/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH08/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH09/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH09/001/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH09/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH09/001/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH09/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH09/002/frames.pdf -------------------------------------------------------------------------------- /videos/scaling-apps/CH09/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH09/002/scene.json -------------------------------------------------------------------------------- /videos/scaling-apps/CH09/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/CH09/chapter.json -------------------------------------------------------------------------------- /videos/scaling-apps/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/build.sh -------------------------------------------------------------------------------- /videos/scaling-apps/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/scaling-apps/video.json -------------------------------------------------------------------------------- /videos/securing-apps/CH01/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH01/001/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH01/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH01/001/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH01/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH01/002/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH01/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH01/002/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH01/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH01/chapter.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/001/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH02/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/001/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/002/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH02/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/002/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/003/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH02/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/003/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/004/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH02/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/004/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/005/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH02/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/005/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH02/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH02/chapter.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/001/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/001/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/002/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/002/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/003/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/003/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/004/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/004/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/004/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/004/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/005/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/005/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/006/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/006/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH03/006/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/006/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH03/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH03/chapter.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/001/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/001/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/002/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/002/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/003/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/003/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/003/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/003/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004a/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004a/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004a/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004a/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004b/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004b/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004b/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004b/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004c/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004c/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004c/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004c/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004d/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004d/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/004d/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/004d/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/005/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/005/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/005/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/005/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/006/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/006/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/006/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/006/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/007/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/007/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/007/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/007/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/008/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/008/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH04/008/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/008/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH04/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH04/chapter.json -------------------------------------------------------------------------------- /videos/securing-apps/CH05/001/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH05/001/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH05/001/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH05/001/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH05/002/frames.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH05/002/frames.pdf -------------------------------------------------------------------------------- /videos/securing-apps/CH05/002/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH05/002/scene.json -------------------------------------------------------------------------------- /videos/securing-apps/CH05/chapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/CH05/chapter.json -------------------------------------------------------------------------------- /videos/securing-apps/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/build.sh -------------------------------------------------------------------------------- /videos/securing-apps/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/videos/securing-apps/video.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/README.md -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/package.json -------------------------------------------------------------------------------- /website/src/css/components/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/cards.css -------------------------------------------------------------------------------- /website/src/css/components/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/code.css -------------------------------------------------------------------------------- /website/src/css/components/explainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/explainer.css -------------------------------------------------------------------------------- /website/src/css/components/hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/hero.css -------------------------------------------------------------------------------- /website/src/css/components/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/nav.css -------------------------------------------------------------------------------- /website/src/css/components/roadmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/components/roadmap.css -------------------------------------------------------------------------------- /website/src/css/containers/body.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/containers/body.css -------------------------------------------------------------------------------- /website/src/css/containers/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/containers/footer.css -------------------------------------------------------------------------------- /website/src/css/containers/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/containers/header.css -------------------------------------------------------------------------------- /website/src/css/containers/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/containers/main.css -------------------------------------------------------------------------------- /website/src/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/layout.css -------------------------------------------------------------------------------- /website/src/css/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/css/vars.css -------------------------------------------------------------------------------- /website/src/fonts/poppins/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/fonts/poppins/font.css -------------------------------------------------------------------------------- /website/src/fonts/social-icons/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/fonts/social-icons/font.css -------------------------------------------------------------------------------- /website/src/fonts/social-icons/icomoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/fonts/social-icons/icomoon.json -------------------------------------------------------------------------------- /website/src/fonts/social-icons/icomoon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/fonts/social-icons/icomoon.woff2 -------------------------------------------------------------------------------- /website/src/images/benefits/intellisense.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/benefits/intellisense.svg -------------------------------------------------------------------------------- /website/src/images/benefits/type-safety.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/benefits/type-safety.svg -------------------------------------------------------------------------------- /website/src/images/features/and-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/features/and-more.svg -------------------------------------------------------------------------------- /website/src/images/features/integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/features/integration.svg -------------------------------------------------------------------------------- /website/src/images/features/segmentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/features/segmentation.svg -------------------------------------------------------------------------------- /website/src/images/hero/illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/hero/illustration.svg -------------------------------------------------------------------------------- /website/src/images/hero/scribble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/hero/scribble.svg -------------------------------------------------------------------------------- /website/src/images/hero/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/hero/stars.svg -------------------------------------------------------------------------------- /website/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/icon.png -------------------------------------------------------------------------------- /website/src/images/jitar-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/jitar-og.png -------------------------------------------------------------------------------- /website/src/images/layout/breaker-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/layout/breaker-bottom.svg -------------------------------------------------------------------------------- /website/src/images/layout/breaker-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/layout/breaker-top.svg -------------------------------------------------------------------------------- /website/src/images/layout/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/images/layout/header.svg -------------------------------------------------------------------------------- /website/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/index.html -------------------------------------------------------------------------------- /website/src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /website/src/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaskingTechnology/jitar/HEAD/website/src/site.css -------------------------------------------------------------------------------- /website/src/site.js: -------------------------------------------------------------------------------- 1 | import './script/tab-component.js'; --------------------------------------------------------------------------------