-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update install guidelines #269
Conversation
``` | ||
|
||
If you still wish to use `yarn` instead of `nodejs-yarn`, the best way is to use bash alias. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you include the alias example, please?
|
||
``` | ||
$ sudo dnf install nodejs --releasever=25 | ||
$ nodejs-yarn add request |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd add a comment describing what is done, like so:
# Install package request using nodejs-yarn
[ . . ]
# Install package request using yarnpkg
|
||
``` | ||
$ sudo dnf install npm | ||
$ dnf info nodejs | ||
$ dnf info nodejs --enablerepo rawhide |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rawhide repository is not included in basic Fedora install AFAIK, so this wouldn't work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will soon work with just --releasever=30 instead of --enablerepo rawhide
, right?
@@ -4,36 +4,45 @@ subsection: nodejs | |||
section: tech-languages | |||
order: 1 | |||
version: LTS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version
variable is no longer used anywhere, could you remove it?
This branch is conflicting atm, please fix it. |
In general this looks fine. |
No description provided.