Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev Env Scripts #23

Open
vlbee opened this issue Aug 3, 2018 · 3 comments
Open

Dev Env Scripts #23

vlbee opened this issue Aug 3, 2018 · 3 comments

Comments

@vlbee
Copy link

vlbee commented Aug 3, 2018

https://github.com/fac-14/DAAMwk5/blob/master/package.json#L6-L8

I highly recommend setting up some common scripts in your package.json at the start of your project. This ensures you create a consistent dev environment across all developers on the team.

On your next project try to set up a test and start script at the start of the process:

  "scripts": {
    "test": "nyc tape src/test.js | tap-spec",
    "start": "nodemon src/server.js",
    "lint": "/node_modules/.bin/eslint"
  },

Fyi you can also use nodemon on your test script :)

@VirtualDOMinic
Copy link
Collaborator

We initially used nodemon on our test script, but @martingaston mentioned it seemed to be causing issues with Travis :(

@martingaston
Copy link
Collaborator

Yeah - our CI tests were running for 10 minutes and then timing out, is that normal?

@vlbee
Copy link
Author

vlbee commented Aug 3, 2018

Travis uses your default scripts so you can write another one for devs 👍

  "start": "node src/server.js",
   "start:watch": "nodemon src/server.js",
  "test": "nyc tape src/test.js | tap-spec",
  "test:watch": "nodemon nyc tape src/test.js | tap-spec",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants