├── .gitignore ├── .gitpod.yml ├── CONTRIBUTING.md ├── README.md ├── index.js ├── non-commercial-license.pdf ├── package.json ├── resources ├── GitPodOpenBrowserIcon.png ├── GitPodPortIcon.png ├── NOVA_Case.jpeg ├── NOVA_Case_Without.jpeg ├── NOVA_SketchUp_Case.gif ├── NOVA_SketchUp_Case.skp ├── Wiki │ ├── Architecture.jpeg │ ├── Architecture.pptx │ ├── Chat.jpg │ ├── ChatBotSkill.png │ ├── ClientDashboard.jpg │ ├── GitHubScreenshot.jpg │ ├── Icons │ │ ├── file.png │ │ └── folder.png │ ├── InstallSkill.jpg │ ├── NOVAIcon.jpg │ ├── ServerDashboard.jpg │ ├── Settings.jpg │ ├── Skills.jpg │ ├── nova-wallpaper.png │ └── screenshots.jpg ├── gitLogo.png ├── github-logo.svg ├── join-us-discord.png ├── nodeJSLogo.png ├── not-done-yet.jpg ├── npmLogo.png └── screenshot.jpg ├── settings.json └── src └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/index.js -------------------------------------------------------------------------------- /non-commercial-license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/non-commercial-license.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/package.json -------------------------------------------------------------------------------- /resources/GitPodOpenBrowserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/GitPodOpenBrowserIcon.png -------------------------------------------------------------------------------- /resources/GitPodPortIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/GitPodPortIcon.png -------------------------------------------------------------------------------- /resources/NOVA_Case.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/NOVA_Case.jpeg -------------------------------------------------------------------------------- /resources/NOVA_Case_Without.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/NOVA_Case_Without.jpeg -------------------------------------------------------------------------------- /resources/NOVA_SketchUp_Case.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/NOVA_SketchUp_Case.gif -------------------------------------------------------------------------------- /resources/NOVA_SketchUp_Case.skp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/NOVA_SketchUp_Case.skp -------------------------------------------------------------------------------- /resources/Wiki/Architecture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Architecture.jpeg -------------------------------------------------------------------------------- /resources/Wiki/Architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Architecture.pptx -------------------------------------------------------------------------------- /resources/Wiki/Chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Chat.jpg -------------------------------------------------------------------------------- /resources/Wiki/ChatBotSkill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/ChatBotSkill.png -------------------------------------------------------------------------------- /resources/Wiki/ClientDashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/ClientDashboard.jpg -------------------------------------------------------------------------------- /resources/Wiki/GitHubScreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/GitHubScreenshot.jpg -------------------------------------------------------------------------------- /resources/Wiki/Icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Icons/file.png -------------------------------------------------------------------------------- /resources/Wiki/Icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Icons/folder.png -------------------------------------------------------------------------------- /resources/Wiki/InstallSkill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/InstallSkill.jpg -------------------------------------------------------------------------------- /resources/Wiki/NOVAIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/NOVAIcon.jpg -------------------------------------------------------------------------------- /resources/Wiki/ServerDashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/ServerDashboard.jpg -------------------------------------------------------------------------------- /resources/Wiki/Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Settings.jpg -------------------------------------------------------------------------------- /resources/Wiki/Skills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/Skills.jpg -------------------------------------------------------------------------------- /resources/Wiki/nova-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/nova-wallpaper.png -------------------------------------------------------------------------------- /resources/Wiki/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/Wiki/screenshots.jpg -------------------------------------------------------------------------------- /resources/gitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/gitLogo.png -------------------------------------------------------------------------------- /resources/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/github-logo.svg -------------------------------------------------------------------------------- /resources/join-us-discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/join-us-discord.png -------------------------------------------------------------------------------- /resources/nodeJSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/nodeJSLogo.png -------------------------------------------------------------------------------- /resources/not-done-yet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/not-done-yet.jpg -------------------------------------------------------------------------------- /resources/npmLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/npmLogo.png -------------------------------------------------------------------------------- /resources/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/resources/screenshot.jpg -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/settings.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHeyChicken/NOVA-NodeJS/HEAD/src/README.md --------------------------------------------------------------------------------