Speedback session is a package that automatically create the rounds and the pairs for your speedback.
Speedback is designed to facilitate quick and frequent feedback exchanges, enabling more regular and informal feedback loops. This streamlined approach helps build trust and fosters continuous improvement, ultimately supporting the personal and professional development.
- Running a Speedback session
- What speedback is and how to run it using zoom breakout rooms
- Speedback Feedback
- Speedback: De-stigmatise feedback via speed-dating principles
- How to Run a 360˚ Speedback
- Speed-back feedback
- yqht/speedback-app-ahoy
This package is available in two ways, the first is to use it as a command line tool and the second is programmatically.
npx speedback-session --team "Eugenia Sweeney,Korey Daugherty,Katina Kelly"The output will be the following:
Round 1
Eugenia Sweeney + Korey Daugherty
Katina Kelly + Alone
Round 2
Eugenia Sweeney + Katina Kelly
Korey Daugherty + Alone
Round 3
Eugenia Sweeney + Alone
Korey Daugherty + Katina KellyInstalling the package in your project, via npm or yarn
npm i speedback-session --save
# or
yarn add speedback-sessionAnd then, using the package via nodejs:
const { SpeedbackSession } = require("speedback-session");
const team = [
{id: '1 ', name: 'Ana'},
{id: '2', name: 'John'}
];
const speedback = new SpeedbackSession(team);
const rounds = speedback.generateRounds();
console.log(rounds);
// outputs
[
{
"roundNumber": 1,
"pairs": [
[
{
"id": "1 ",
"name": "Ana"
},
{
"id": "2",
"name": "John"
}
]
]
}
]- How to make a shell executable node file using TypeScript
- Node.js formatted console output
- End-to-end test your CLI tools
- https://www.smashingmagazine.com/2022/04/testing-cli-way-people-use-it/
- https://www.smashingmagazine.com/2021/11/powerful-terminal-commandline-tools-modern-web-development/
- https://pkaramol.medium.com/end-to-end-command-line-tool-testing-with-bats-and-auto-expect-7a4ffb19336d
- https://github.com/vesln/nixt
- https://katalon.com/resources-center/blog/end-to-end-e2e-testing-tools-frameworks
