项目作者: Chema22R

项目描述 :
Application to analyze the local network in search of prototypes of printers, capturing and storing their information.
高级语言: JavaScript
项目地址: git://github.com/Chema22R/printers-discovery.git
创建时间: 2019-05-24T14:54:09Z
项目社区:https://github.com/Chema22R/printers-discovery

开源协议:MIT License

下载


Netlify Status
CodeQL
MIT License

Printers Discovery

This application aims to analyze the local network in search of prototypes of printers, capturing and storing their information.

The interface allows users to view the information collected in three different ways: the icons view, the list view and the columns view (accessible from the upper left buttons).

In the upper central part of the interface is the search field, which allows a basic filtering of the information displayed. If a more advanced filtering is required, users can create custom filters (second upper right button).

Regarding the interaction with the information shown, users can click on one of the printers to view detailed information or edit it. In addition, through the context menu (right mouse button), users can access extra features, such as the reservation calendar.

Check out a real example of the application from here.

Setup and Run

  1. Download the source code
  2. Install the node modules executing npm run i
  3. Fill the server .env credentials.
  4. Execute one of the following commands to build the application
    • npm run build (production)
    • npm run build-dev (development)
  5. The build code can be found in ./client/dist and ./server/dist

Directory Structure

  1. |- /.dependabot
  2. |- ...
  3. |- /.github
  4. |- ...
  5. |- /client
  6. |- /src
  7. |- /app
  8. |- ...
  9. |- /assets
  10. |- /favicons
  11. |- ...
  12. |- /icons
  13. |- ...
  14. |- /images
  15. |- ...
  16. |- /style
  17. |- ...
  18. |- index.html
  19. |- index.js
  20. |- package-lock.json
  21. |- package.json
  22. |- webpack.config.js
  23. |- webpack.dev.js
  24. |- webpack.prod.js
  25. |- /server
  26. |- /src
  27. |- /app
  28. |- ...
  29. |- HPDiscovery
  30. |- ...
  31. |- index.js
  32. |- example.env
  33. |- package-lock.json
  34. |- package.json
  35. |- webpack.config.js
  36. |- webpack.dev.js
  37. |- webpack.prod.js
  38. |- .gitignore
  39. |- LICENSE
  40. |- package-lock.json
  41. |- package.json
  42. |- Procfile
  43. |- README.md