Skip to content

Commit

Permalink
Rename Node to js (open-telemetry#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 authored Jun 24, 2019
1 parent 18bfa22 commit 9a56922
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ for general practices for OpenTelemetry project.

### Fork

In the interest of keeping this repository clean and manageable, you should work from a fork. To create a fork, click the 'Fork' button at the top of the repository, then clone the fork locally using `git clone [email protected]:USERNAME/opentelemetry-node.git`.
In the interest of keeping this repository clean and manageable, you should work from a fork. To create a fork, click the 'Fork' button at the top of the repository, then clone the fork locally using `git clone [email protected]:USERNAME/opentelemetry-js.git`.

You should also add this repository as an "upstream" repo to your local copy, in order to keep it up to date. You can add this as a remote like so:
```
git remote add upstream https://github.com/open-telemetry/opentelemetry-node.git
git remote add upstream https://github.com/open-telemetry/opentelemetry-js.git
#verify that the upstream exists
git remote -v
Expand All @@ -44,7 +44,7 @@ Please also see [GitHub workflow](https://github.com/open-telemetry/community/bl

### Running the tests

The `opentelemetry-node` project is written in TypeScript.
The `opentelemetry-js` project is written in TypeScript.

- `yarn install` or `npm install` to install dependencies.
- `yarn compile` or `npm run compile` compiles the code, checking for type errors.
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# OpenTelemetry Node SDK - distributed tracing and stats collection framework
# OpenTelemetry - distributed tracing and stats collection framework

Node Channel: [![Gitter chat][node-gitter-image]][node-gitter-url]

Community Channel: [![Gitter chat][main-gitter-image]][main-gitter-url]


We'd love your help!. Use tags [up-for-grabs][up-for-grabs-issues] and
[good first issue][good-first-issues] to get started with the project. Follow
[CONTRIBUTING](CONTRIBUTING.md) guide to report issues or submit a proposal.

## Contributing
We have a weekly SIG meeting! See the [community page](https://github.com/open-telemetry/community#nodejs-sdk) for meeting details and notes.

[main-gitter-image]: https://badges.gitter.im/open-telemetry/community.svg
[main-gitter-url]: https://gitter.im/open-telemetry/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
[node-gitter-image]: https://badges.gitter.im/open-telemetry/opentelemetry-node.svg
[node-gitter-image]: https://badges.gitter.im/open-telemetry/opentelemetry-js.svg
[node-gitter-url]: https://gitter.im/open-telemetry/opentelemetry-node?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

We have a weekly SIG meeting! See the [community page](https://github.com/open-telemetry/community#nodejs-sdk) for meeting details and notes.
[up-for-grabs-issues]: https://github.com/open-telemetry/OpenTelemetry-js/issues?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs
[good-first-issues]: https://github.com/open-telemetry/OpenTelemetry-js/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"codecov": "lerna run codecov",
"check": "lerna run check"
},
"repository": "open-telemetry/opentelemetry-node",
"repository": "open-telemetry/opentelemetry-js",
"keywords": [
"opentelemetry",
"nodejs",
Expand Down
2 changes: 1 addition & 1 deletion packages/opentelemetry-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "OpenTelemetry Core",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "open-telemetry/opentelemetry-node",
"repository": "open-telemetry/opentelemetry-js",
"scripts": {
"test": "nyc ts-mocha -p ./tsconfig.json test/**/*.ts",
"tdd": "yarn run test -- --watch-extensions ts --watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/opentelemetry-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ This package provides TypeScript interfaces and enums for the OpenTelemetry core

Apache 2.0 - See [LICENSE][license-url] for more information.

[gitter-image]: https://badges.gitter.im/open-telemetry/opentelemetry-node.svg
[gitter-image]: https://badges.gitter.im/open-telemetry/opentelemetry-js.svg
[gitter-url]: https://gitter.im/open-telemetry/opentelemetry-node?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
[license-url]: https://github.com/open-telemetry/opentelemetry-node/blob/master/LICENSE
[license-url]: https://github.com/open-telemetry/opentelemetry-js/blob/master/LICENSE
2 changes: 1 addition & 1 deletion packages/opentelemetry-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "TypeScript types for OpenTelemetry",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "open-telemetry/opentelemetry-node",
"repository": "open-telemetry/opentelemetry-js",
"scripts": {
"build": "npm run compile",
"check": "gts check",
Expand Down

0 comments on commit 9a56922

Please sign in to comment.