Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

24 lines
587 B

  1. npm-start(1) -- Start a package
  2. ===============================
  3. ## SYNOPSIS
  4. npm start [-- <args>]
  5. ## DESCRIPTION
  6. This runs an arbitrary command specified in the package's `"start"` property of
  7. its `"scripts"` object. If no `"start"` property is specified on the
  8. `"scripts"` object, it will run `node server.js`.
  9. As of [`npm@2.0.0`](https://blog.npmjs.org/post/98131109725/npm-2-0-0), you can
  10. use custom arguments when executing scripts. Refer to npm-run-script(1) for
  11. more details.
  12. ## SEE ALSO
  13. * npm-run-script(1)
  14. * npm-scripts(7)
  15. * npm-test(1)
  16. * npm-restart(1)
  17. * npm-stop(1)