GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
811 B

2 months ago
  1. This folder contains prebuilt browser versions of the full library. When sending pull requests, it is not required to update these.
  2. Prebuilt files are in source control to enable pain-free frontend respectively CDN usage:
  3. CDN usage
  4. ---------
  5. Development:
  6. ```
  7. <script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.X.X/dist/protobuf.js"></script>
  8. ```
  9. Production:
  10. ```
  11. <script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.X.X/dist/protobuf.min.js"></script>
  12. ```
  13. **NOTE:** Remember to replace the version tag with the exact [release](https://github.com/dcodeIO/protobuf.js/tags) your project depends upon.
  14. Frontend usage
  15. --------------
  16. Development:
  17. ```
  18. <script src="node_modules/protobufjs/dist/protobuf.js"></script>
  19. ```
  20. Production:
  21. ```
  22. <script src="node_modules/protobufjs/dist/protobuf.min.js"></script>
  23. ```