Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

README.md 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # node-preload
  2. [![Travis CI][travis-image]][travis-url]
  3. [![Greenkeeper badge][gk-image]](https://greenkeeper.io/)
  4. [![NPM Version][npm-image]][npm-url]
  5. [![NPM Downloads][downloads-image]][downloads-url]
  6. [![MIT][license-image]](LICENSE)
  7. Request that Node.js child processes preload modules
  8. ### Install node-preload
  9. This module requires node.js 8 or above.
  10. ```sh
  11. npm i node-preload
  12. ```
  13. ## Usage
  14. ```js
  15. 'use strict';
  16. const preloadList = require('node-preload');
  17. // Request that all Node.js child processes preload @babel/register
  18. preloadList.push(require.resolve('@babel/register'));
  19. ```
  20. ## Limitations
  21. Worker threads are not directly supported by this module, results may vary.
  22. ## `node-preload` for enterprise
  23. Available as part of the Tidelift Subscription.
  24. The maintainers of `node-preload` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-node-preload?utm_source=npm-node-preload&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
  25. [npm-image]: https://img.shields.io/npm/v/node-preload.svg
  26. [npm-url]: https://npmjs.org/package/node-preload
  27. [travis-image]: https://travis-ci.org/cfware/node-preload.svg?branch=master
  28. [travis-url]: https://travis-ci.org/cfware/node-preload
  29. [gk-image]: https://badges.greenkeeper.io/cfware/node-preload.svg
  30. [downloads-image]: https://img.shields.io/npm/dm/node-preload.svg
  31. [downloads-url]: https://npmjs.org/package/node-preload
  32. [license-image]: https://img.shields.io/npm/l/node-preload.svg