├── .DS_Store ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── __mocks__ ├── fileMock.js └── styleMock.js ├── __tests__ └── enzyme.js ├── assets ├── AxonFinalLogo.png ├── AxonLogoDotSize.png ├── AxonLogoSize.png ├── AxonTitleIcon.png ├── Checkmark.png ├── codeicon.png ├── folder-with-checkmark.png ├── folderImport.png ├── postman-512.png ├── postmanIcon.png └── postmanLogoText.png ├── babel.config.js ├── gifs ├── CreatePostmanCollection.gif ├── CreateSupertest.gif ├── ExportTestFile.gif ├── FrontPage.gif ├── FullDemo.gif ├── ImportServerFolder.gif └── PostmanDemo.gif ├── nodemon.json ├── package.json ├── src ├── .DS_Store ├── app │ ├── app.scss │ ├── app.tsx │ ├── components │ │ ├── fileExport.tsx │ │ └── fileImport.tsx │ ├── options.tsx │ └── root.tsx ├── axonDesktopIcon.ico ├── index.html ├── main.ts ├── renderer.tsx └── utils │ ├── buildPathObject.ts │ ├── buildPostman.ts │ ├── buildSupertest.ts │ └── utilityFunctions │ ├── FindEndpointData.ts │ ├── FuncDefinitionParser.ts │ ├── IdentifyFileType.ts │ ├── ResolvePath.ts │ ├── StringBuilder.ts │ └── SuperTestCodeBuilder.ts ├── test └── electronTest.js ├── tsconfig.json ├── types └── *.d.ts ├── webpack.electron.config.js └── webpack.react.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | dist 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/enzyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/__tests__/enzyme.js -------------------------------------------------------------------------------- /assets/AxonFinalLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/AxonFinalLogo.png -------------------------------------------------------------------------------- /assets/AxonLogoDotSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/AxonLogoDotSize.png -------------------------------------------------------------------------------- /assets/AxonLogoSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/AxonLogoSize.png -------------------------------------------------------------------------------- /assets/AxonTitleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/AxonTitleIcon.png -------------------------------------------------------------------------------- /assets/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/Checkmark.png -------------------------------------------------------------------------------- /assets/codeicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/codeicon.png -------------------------------------------------------------------------------- /assets/folder-with-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/folder-with-checkmark.png -------------------------------------------------------------------------------- /assets/folderImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/folderImport.png -------------------------------------------------------------------------------- /assets/postman-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/postman-512.png -------------------------------------------------------------------------------- /assets/postmanIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/postmanIcon.png -------------------------------------------------------------------------------- /assets/postmanLogoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/assets/postmanLogoText.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/babel.config.js -------------------------------------------------------------------------------- /gifs/CreatePostmanCollection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/CreatePostmanCollection.gif -------------------------------------------------------------------------------- /gifs/CreateSupertest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/CreateSupertest.gif -------------------------------------------------------------------------------- /gifs/ExportTestFile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/ExportTestFile.gif -------------------------------------------------------------------------------- /gifs/FrontPage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/FrontPage.gif -------------------------------------------------------------------------------- /gifs/FullDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/FullDemo.gif -------------------------------------------------------------------------------- /gifs/ImportServerFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/ImportServerFolder.gif -------------------------------------------------------------------------------- /gifs/PostmanDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/gifs/PostmanDemo.gif -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/app.tsx -------------------------------------------------------------------------------- /src/app/components/fileExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/components/fileExport.tsx -------------------------------------------------------------------------------- /src/app/components/fileImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/components/fileImport.tsx -------------------------------------------------------------------------------- /src/app/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/options.tsx -------------------------------------------------------------------------------- /src/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/app/root.tsx -------------------------------------------------------------------------------- /src/axonDesktopIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/axonDesktopIcon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/renderer.tsx -------------------------------------------------------------------------------- /src/utils/buildPathObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/buildPathObject.ts -------------------------------------------------------------------------------- /src/utils/buildPostman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/buildPostman.ts -------------------------------------------------------------------------------- /src/utils/buildSupertest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/buildSupertest.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/FindEndpointData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/FindEndpointData.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/FuncDefinitionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/FuncDefinitionParser.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/IdentifyFileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/IdentifyFileType.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/ResolvePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/ResolvePath.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/StringBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/StringBuilder.ts -------------------------------------------------------------------------------- /src/utils/utilityFunctions/SuperTestCodeBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/src/utils/utilityFunctions/SuperTestCodeBuilder.ts -------------------------------------------------------------------------------- /test/electronTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/test/electronTest.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/*.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/types/*.d.ts -------------------------------------------------------------------------------- /webpack.electron.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/webpack.electron.config.js -------------------------------------------------------------------------------- /webpack.react.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/axon/HEAD/webpack.react.config.js --------------------------------------------------------------------------------