ARROW-2777: [JS] Friendlier onboarding readme#2200
ARROW-2777: [JS] Friendlier onboarding readme#2200lmeyerov wants to merge 2 commits intoapache:masterfrom
Conversation
-- Link slack, tutorials, unit tests -- Add example of creating a Table from pure JS
js/README.md
Outdated
| Even if you do not plan to contribute to Apache Arrow itself or Arrow | ||
| integrations in other projects, we'd be happy to have you involved: | ||
|
|
||
| * [Join the Slack channel][5]: Channels `#general` and `#javascript` |
There was a problem hiding this comment.
See recent mailing list thread about the Slack channel -- it's likely going to be closed soon
|
Great just removed official Slack. We're still using for interactive JS dev and probably intro stuff, but moved out of official. @trxcllnt lmk if there's an alternate link. |
|
See how Apache Spark has a link to an unofficial chat room: http://spark.apache.org/community.html I just opened https://issues.apache.org/jira/browse/ARROW-2881; the Arrow website doesn't do a good job yet explaining the different community channels |
| {name: "precipitation", count: LENGTH, VALIDITY: [], DATA: rainAmounts }, | ||
| {name: "date", count: LENGTH, VALIDITY: [], DATA: rainDates } ] }] }) | ||
| ``` | ||
|
|
There was a problem hiding this comment.
nitpicky, but this won't actually work when copy-pasted because LENGTH is defined after the arrays.
It would be really nice if we could finish ARROW-2766 to make this example much cleaner. Inferring the types from arrays is difficult though.. so we could do a subset of that functionality that takes a list of already created vectors and a list of names for them. We can almost do this already, I can write up a PR that cleans it up.
There was a problem hiding this comment.
Yeah, let's get this out and can add more later. Both code, tutorials, and communty links can all be improved :) I'm still trying to figure out how to make a graphistry.slack.com #arrow signup page link...
There was a problem hiding this comment.
Sounds good - I can update the docs when I put that PR up
There was a problem hiding this comment.
See #2322
Any objections to going ahead and merging this PR?
-- Link slack, tutorials, unit tests
-- Add example of creating a Table from pure JS