1.0.1 • Published 1 year ago

schoolinfo v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

schoolinfo

Installing

Using npm:

npm install schoolinfo

Using yarn:

yarn add schoolinfo

Example

import { getSchoolInfo, searchSchool } from "schoolinfo";

// Search schools with a given query
searchSchool("유성").then((res) => {
  console.log(res);
  res.data.forEach((school) => {
    // Get school detail info
    getSchoolInfo(school as string).then((info) => {
      console.log(info);
    });
  });
});
1.0.1

1 year ago

1.0.0

1 year ago

0.0.1

1 year ago