UNPKG
tba-js
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
Node.JS API for The Blue Alliance
github.com/FRCteam4909/TBA-API
FRCteam4909/TBA-API
tba-js
/
example.js
9 lines
(7 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
tba =
require
(
"tba-js"
);
// Needs to follow this pattern:
// - `<team/person id>:<app description>:<version>`
tba.
setAppID
(
"frc4909:tba-api:v0.0.1"
); tba.
getMatches
(
"2016"
,
"casd"
,
(
data
) =>
{
console
.
dir
(data); });