apify-sdk-legacy
Version:
Package for Crawlee that should allows to import and use packages, that are using older version of Apify SDK.
28 lines (18 loc) • 818 B
Markdown
for [Crawlee](https://github.com/apify/crawlee) that should allows to import and use packages, that are using older version of Apify SDK.
```
npm install apify-sdk-legacy
```
```javascript
import { apifyGoogleAuth } from 'apify-google-auth'; // package using Apify SDK 2
// Now the packages may call older SDK functions.
import 'apify-sdk-legacy';
```
- [apify-google-auth](https://github.com/metalwarrior665/apify-google-auth)
Most of the information related to the backward compatibility may be found at [Upgrading to v3](https://sdk.apify.com/docs/upgrading/upgrading-to-v3).
New features are added on-the-go as needed, feel free to create pull-request with your own changes.
Package