workshop-setup
Verify and setup a repository for workshop attendees



The problem
I make quite a few workshops and one of the biggest challenges I
have is making sure that people have set things up correctly so the workshop has
as few surprises as possible. So I want to have a script validate things on
attendees machines before they start on the workshop and give them helpful info
to fix problems early and on their own.
The problem is further complicated by the fact that I can't use any modules to
do this because I can pretty much only guarantee that attendees have some
version of node and npm, but not which version. So I need something that exists
when they clone the repository right from the start.
This solution
This exposes a simple function that takes an array of validators which return
strings of helpful text (or a promise that resolves to a string of helpful text)
if the system is not valid (or null if it is valid). To overcome the issue of
not being able to install things, there is a bundled version of this module that
you can download from the registry and commit directly to your project.
Table of Contents
Installation
The way I expect people to use this module is by downloading the UMD build and
committing it directly into their project. You can download the UMD build via
npm if you like (then just copy/paste the file from node_modules) or download
it from unpkg.com here: https://unpkg.com/workshop-setup/dist/index.js
curl -o scripts/workshop-setup.js -L https://unpkg.com/workshop-setup/dist/index.js
This module is distributed via npm which is bundled with node and
can be installed as one of your project's devDependencies:
npm install --save-dev workshop-setup
Usage
Here's what I recommend:
- Download the workshop-setup script into
scripts/workshop-setup.js
- Add
engines config to your packge.json with node, npm, and yarn
listed
- Add a
script to your package.json called setup with:
node ./scripts/setup
- Create the
scripts/setup.js file
- And put this in it:
var path = require('path')
var pkg = require(path.join(process.cwd(), 'package.json'))
require('./workshop-setup')
.setup(pkg.engines)
.then(
() => {
console.log(`💯 You're all set up! 👏`)
},
error => {
console.error(`🚨 There was a problem:`)
console.error(error)
console.error(
`\nIf you would like to just ignore this error, then feel free to do so and install dependencies as you normally would in "${process.cwd()}". Just know that things may not work properly if you do...`,
)
},
)
Alternative usage
Whether you install it or download it, usage is basically the same. The
difference is how you require it.
var workshopSetup = require('workshop-setup')
var workshopSetup = require('./workshop-setup')
verifySystem
This allows you to verify the user's system is correct:
var verifySystem = require('./workshop-setup').verifySystem
var verifyPromise = verifySystem([
verifySystem.validators.node('^8.4.0'),
verifySystem.validators.npm('^5.4.1'),
])
verifyPromise.then(
function() {
console.log('🎉 Congrats! Your system is setup properly')
console.log('You should be good to install and run things.')
},
function(error) {
console.error(error)
console.info(
"\nIf you don't care about these warnings, go " +
'ahead and install dependencies with `node ./scripts/install`',
)
process.exitCode = 1
},
)
You can also specify custom validators. There are several utilities exposed by
workshop-setup as well which can be quite helpful.
verifySystem([
function promiseVerify() {
return new Promise(resolve => {
resolve(null)
})
},
function syncVerify() {
if ('cats' > 'dogs') {
return 'dogs are way better than cats'
}
return null
},
function validateYeoman() {
return verifySystem.utils.execValidator('^1.8.5', 'yo --version', function(
actual,
desired,
) {
return verifySystem.utils.commonTags.oneLine`
You have version ${actual} of yeoman, but
should have a version in the range: ${desired}
`
})
},
]).then()
validators
The built-in validators available on workshopSetup.verifySystem.validators
are:
node(desiredVersionRange)
yarn(desiredVersionRange)
npm(desiredNpmVersionRange)
utils
Most of the utils are simply exposing other modules which are bundled with
workshop-setup. These are available on workshopSetup.verifySystem.utils:
execValidator(desiredVersionRange, commandToGetVersion, messageFn) -
messageFn is given actual, desired
oneLine: a tag that allows you to have multiple lines for a message and
it'll put it all on one line
semver (really useful satisfies method on this one)
installDeps
This will install dependencies in the given directory/directories (defaults to
process.cwd()) using npm.
var path = require('path')
var installDeps = require('./workshop-setup').installDeps
var main = path.resolve(__dirname, '..')
var api = path.resolve(__dirname, '../api')
var client = path.resolve(__dirname, '../client')
installDeps([main, api, client]).then(
() => {
console.log('👍 all dependencies installed')
},
() => {
},
)
installDeps()
installDeps(process.cwd())
installDeps(path.resolve('..'))
Inspiration
This project was inspired by all of the people who have ever struggled to set up
one of my workshops before. Hopefully it's easier now!
Other Solutions
I'm unaware of any other solutions for this problem. Feel free to link them here
if you find any.
Contributors
Thanks goes to these people (emoji key):
This project follows the all-contributors specification.
Contributions of any kind welcome!
LICENSE
MIT