https://github.com/k-phoen/node-alchemyapi
[DEPRECATED] A node.js AlchemyAPI SDK
https://github.com/k-phoen/node-alchemyapi
Last synced: 26 days ago
JSON representation
[DEPRECATED] A node.js AlchemyAPI SDK
- Host: GitHub
- URL: https://github.com/k-phoen/node-alchemyapi
- Owner: K-Phoen
- License: apache-2.0
- Created: 2014-10-17T14:28:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-29T19:09:51.000Z (almost 9 years ago)
- Last Synced: 2024-05-01T20:13:01.053Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.29 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-alchemyapi
A node.js SDK for [AlchemyAPI](http://www.alchemyapi.com)
Basically the same as the [official one](https://github.com/alchemyapi/alchemyapi_node),
but with a few additions and improvements.# Status
This project is **DEPRECATED** and should NOT be used.
If someone magically appears and wants to maintain this project, I'll gladly give access to this repository.
# Installation
```
npm install node-alchemyapi
```# Usage
```javascript
var AlchemyAPI = require('node-alchemyapi'),
api = new AlchemyAPI('');api.entities('url', 'https://github.com/K-Phoen/node-alchemyapi', {'sentiment': 1}, function(response) {
// do something
});
```# License
This library is released under the Apache 2.0 license. See the bundled LICENSE
file for details.