Learn JavaScript
4.3K subscribers
459 photos
10 videos
132 files
3.02K links
All info, tutorial, JS tips and more ....!
bio.link/javascript_js_
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @technical_stark
Download Telegram
“Has Anyone Seen Web3?” — The Complete Roadmap and Resources to Become a Web3 Developer in 2022

https://betterprogramming.pub/has-anyone-seen-web3-a-complete-roadmap-free-resources-to-become-web3-developer-4e5dc9332c1f

#web3 #resources #Roadmap

For More Web3 Content Join
@web3_learn
MLH is looking for Technical Program Associates to help us run the MLH Fellowship (12 week internship alternative to help people start their careers in tech! raised_hands) this summer!

This is a great opportunity if you're looking to improve your leadership and teamwork skills! mlh

If you've got a technical mindset and enjoy supporting people, then definitely apply rocket

https://careers.mlh.io/o/technical-program-associate-mlh-fellowship

#MLH #Fellowship
Forwarded from Cyber Punk
☆☆☆☆💥 Tech News 💥☆☆☆☆

🌐 WhatsApp starts rolling out stable version of multi-device feature Now use WhatsApp on five devices simultaneously with Multi-Device

🌐 Zomato announced Instant food 10 minutes food delivery will start with four stations in Gurugram from next month onwards

🌐 Crypto companies fears losing customers, after govt refuses to allow offsetting losses

🌐 OnePlus to reportedly launch as many as 6 smartphones this year; launch timeline tipped

🌐 boAt Launches New 'Airdopes 411' Earbuds With Active Noise Cancellation, Priced at Rs 1,999

🌐 Apple has resolved the outage affecting iMessage, Apple Music, the App Store, and other services

🌐 OnePlus is reportedly planning to launch a budget smartwatch in India

🌐 Apple Watch Series 3 could be discontinued this year, says report

🌐 Apple iPhone supplier Foxconn resumes operations in China’s Shenzhen after Covid-19 outbreaks

🌐 Apple to Face Claims That it Limits Third-Party Heart-Rate App Features on Apple Watch

🌐 Google Picking Up Data From Dialer And Messages Apps Without Your Consent: Report

🌐 Facebook is locking out people who didn’t activate Facebook Protect

🌐 Google Chrome users at high risk, must immediately update the browser: CERT-In

🌐 New iPhone 14 Pro renders hint at dual punch-hole design and gold colour

🌐 Meesho plans branded goods biz, eyes brand makeover

==============================
@CyberPunk_anonymous
==============================
Which one are you?
Anonymous Poll
76%
Beginner
22%
Intermediate
1%
Pro
📌Which code editor do you use?
Anonymous Poll
3%
Atom
8%
Note pad++
77%
Vs code
5%
Sublime text
7%
Others
▪️Clone Wars - Open source clones of popular sites

100+ open-source clones and alternatives of popular sites like Airbnb, Amazon, Instagram, Netflix, TikTok, Spotify, WhatsApp, YouTube, etc. List contains source code, tutorials, demo links, tech stack, and GitHub stars count. Great for learning purpose!


Github:
https://github.com/GorvGoyl/Clone-Wars

#Clone #Github
NPM Commands Every Developer Should Know.

📌 npm init

Initializes the package.json file of a project.

Use the -y flag to skip the questions and to create a package.json using default values.

📌 npm install

Installs the dependencies listed in package.json.

Shorthand: npm i

📌 npm install <package>

Installs a package from the npm registry.

Shorthand: npm i <package>

📌 npm install -g <package>

Installs a package globally on your machine.

📌 npm uninstall <package>

Like the command itself suggests, it uninstalls packages that are already installed.

Shorthand: npm un <package>

📌 npm uninstall -g <package>

Uninstalls a global package from your machine.

📌 npm update <package>

Updates the specified package to the latest version available. If 'package' is not specified, it updates every package.

Shorthand: npm up <package>

📌 npm update -g <package>

Updates a global package to the latest version available.

📌 npm list

Lists all the installed packages and their versions, along with their dependencies in a tree structure.

📌 npm view <package> <version>

Shows available details about the specified package. If the version is not set, it defaults to the latest version.

📌 npm run <script>

Executes the specified 'script', if found as a property of the 'script' object in package.json.

📌 npm help <term>

Tries to show the appropriate documentation page for the term provided.


#NPM #Commands #Devloper