Servo on pin 10
Servo connected to pin 10. Requires servo on pin that supports PWM (usually denoted by ~).

Fritzing diagram: servo.fzz
Run this example from the command line with:
node eg/servo-continuous.js
const {Board, Servo} = require("johnny-five");
const keypress = require("keypress");
keypress(process.stdin);
const board = new Board();
board.on("ready", () => {
  console.log("Use Up and Down arrows for CW and CCW respectively. Space to stop.");
  const servo = new Servo.Continuous(10);
  process.stdin.resume();
  process.stdin.setEncoding("utf8");
  process.stdin.setRawMode(true);
  process.stdin.on("keypress", (ch, key) => {
    if (!key) {
      return;
    }
    if (key.name === "q") {
      console.log("Quitting");
      process.exit();
    } else if (key.name === "up") {
      console.log("CW");
      servo.cw();
    } else if (key.name === "down") {
      console.log("CCW");
      servo.ccw();
    } else if (key.name === "space") {
      console.log("Stopping");
      servo.stop();
    }
  });
});