{"id":17651352,"url":"https://github.com/nash403/corenlp-request-wrapper","last_synced_at":"2025-03-30T09:13:06.516Z","repository":{"id":87358282,"uuid":"90362316","full_name":"nash403/corenlp-request-wrapper","owner":"nash403","description":"Make simple requests to Stanford CoreNLP with javascript.","archived":false,"fork":false,"pushed_at":"2017-06-04T09:14:44.000Z","size":8,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-05T19:08:19.899Z","etag":null,"topics":["corenlp","javascript","stanford-corenlp","wrapper"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nash403.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-05T09:55:31.000Z","updated_at":"2017-11-18T10:13:28.000Z","dependencies_parsed_at":"2023-05-23T09:15:33.345Z","dependency_job_id":null,"html_url":"https://github.com/nash403/corenlp-request-wrapper","commit_stats":{"total_commits":10,"total_committers":3,"mean_commits":"3.3333333333333335","dds":0.5,"last_synced_commit":"7e54f1f9468a9fd79662f9af8ae9d65e154c9efe"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nash403%2Fcorenlp-request-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nash403%2Fcorenlp-request-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nash403%2Fcorenlp-request-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nash403%2Fcorenlp-request-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nash403","download_url":"https://codeload.github.com/nash403/corenlp-request-wrapper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246296615,"owners_count":20754635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["corenlp","javascript","stanford-corenlp","wrapper"],"created_at":"2024-10-23T11:41:56.661Z","updated_at":"2025-03-30T09:13:06.496Z","avatar_url":"https://github.com/nash403.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# corenlp-request-wrapper\n\nMake simple requests to Stanford CoreNLP with javascript.\n\n## Stanford CoreNLP\nDownload and extract Stanford CoreNLP from http://stanfordnlp.github.io/CoreNLP/#download\n\nRun `java -mx4g -cp \"*\" edu.stanford.nlp.pipeline.StanfordCoreNLPServer` in the extracted folder to start the CoreNLP server at http://localhost:9000/.\n\n## corenlp-request-wrapper\n`npm install corenlp-request-wrapper` or `yarn add corenlp-request-wrapper`\n\nThis wrapper provides a single method `parse` which interacts with Stanford CoreNLP server. \n\n### Test \u0026 Example\n\nTo test run `npm test` or `yarn run test`\n\n```js\nconst corenlp = require(\"corenlp-request-wrapper\");\n\n// CoreNLP Server was lunched here with the french props file on port 9000\ncorenlp.parse(\n  \"Bonjour le monde.\" /*stringToProcess*/,\n  9000 /*portNumber*/,\n  \"pos,lemma\" /*annotators*/,\n  \"json\" /*outputFormat*/,\n  (err, parsedText) =\u003e { /*Callback function*/\n    console.log(JSON.stringify(JSON.parse(parsedText), null, 2));\n  }\n);\n```\n\n### Read More\nFor full Stanford CoreNLP usage information see http://stanfordnlp.github.io/CoreNLP/index.html","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnash403%2Fcorenlp-request-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnash403%2Fcorenlp-request-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnash403%2Fcorenlp-request-wrapper/lists"}