https://medium.com/dailyjs/how-to-use-javascript-proxies-for-fun-and-profit-365579d4a9f8
With JavaScript proxies you can wrap an existing object and intercept any access to its attributes or methods. Even if they do not exist!
With JavaScript proxies you can wrap an existing object and intercept any access to its attributes or methods. Even if they do not exist!
Medium
How to use JavaScript Proxies for Fun and Profit
Thereโs a very recent new feature of the JavaScript language that is still not being widely used: JavaScript proxies.
JavaScript Daily
https://medium.com/@devongovett/parcel-v1-5-0-released-source-maps-webassembly-rust-and-more-3a6385e43b95
Medium
๐ฆ Parcel v1.6.0: Zero Config ES6+ and JSX, Node and Electron Targets, Bundle Statistics, and more! ๐
Today Iโm excited to release Parcel v1.6.0, a huge release made possible by our awesome community! Check it out on Github.
Code challenges - plain js projects
https://javascript30.com/
https://javascript30.com/
JavaScript 30
Build 30 things with vanilla JS in 30 days with 30 tutorials
Six useful JavaScript libraries for dealing with data
These libraries can help format your data for analysis or a compelling online presentation.
Need to reformat data for use in another application? Plot it on a map? Use it for an interactive Web graphic? These open-source JavaScript libraries can help turn your data into a suitable format for analysis or a compelling online presentation.
https://www.computerworld.com/article/2495888/web-apps/web-apps-six-useful-javascript-libraries-for-dealing-with-data.html
These libraries can help format your data for analysis or a compelling online presentation.
Need to reformat data for use in another application? Plot it on a map? Use it for an interactive Web graphic? These open-source JavaScript libraries can help turn your data into a suitable format for analysis or a compelling online presentation.
https://www.computerworld.com/article/2495888/web-apps/web-apps-six-useful-javascript-libraries-for-dealing-with-data.html
Computerworld
Six useful JavaScript libraries for dealing with data
These libraries can help format your data for analysis or a compelling online presentation.
Scraping the Web With Node.js
Before web based API's became the prominent way of sharing data between services we had web scraping. Web scraping is a technique in data extraction where you pull information from websites.
There are many ways this can be accomplished. It can be done manually by copy and pasting data from a website, using specialized software, or building your own scripts to scrape data. In this tutorial, we will be showing you how to build a simple web scraper that gets some general movie information from IMDB. The technologies we will be using to accomplish this are:
- NodeJS: A back end JS framework.
- ExpressJS: The Node framework that everyone uses and loves.
- Request: Helps us make HTTP calls.
- Cheerio: Implementation of core jQuery specifically for the server (helps us traverse the DOM and extract data).
https://scotch.io/tutorials/scraping-the-web-with-node-js
Before web based API's became the prominent way of sharing data between services we had web scraping. Web scraping is a technique in data extraction where you pull information from websites.
There are many ways this can be accomplished. It can be done manually by copy and pasting data from a website, using specialized software, or building your own scripts to scrape data. In this tutorial, we will be showing you how to build a simple web scraper that gets some general movie information from IMDB. The technologies we will be using to accomplish this are:
- NodeJS: A back end JS framework.
- ExpressJS: The Node framework that everyone uses and loves.
- Request: Helps us make HTTP calls.
- Cheerio: Implementation of core jQuery specifically for the server (helps us traverse the DOM and extract data).
https://scotch.io/tutorials/scraping-the-web-with-node-js
Digitalocean
How To Scrape a Website Using Node.js and Puppeteer | DigitalOcean
In this tutorial, you will build a web scraping application using Node.js and Puppeteer. Your app will grow in complexity as you progress. First, you will coโฆ
Data processing using JavaScript built-in methods
Building UI in the client side using JavaScript involves retrieving JSON data from the server using REST APIs and processing. Similarly, Node.js could retrieve data from a datasource and do some processing. For small scale data processing, JavaScript has very good built-in methods, which are super fun to work with. This article takes an example data and process it to get insight into the data.
https://sbalagop.wordpress.com/2017/06/01/data-processing-using-built-in-javascript-methods/
Building UI in the client side using JavaScript involves retrieving JSON data from the server using REST APIs and processing. Similarly, Node.js could retrieve data from a datasource and do some processing. For small scale data processing, JavaScript has very good built-in methods, which are super fun to work with. This article takes an example data and process it to get insight into the data.
https://sbalagop.wordpress.com/2017/06/01/data-processing-using-built-in-javascript-methods/
Sivakumar Balagopalan
Data processing using JavaScript built-in methods
Introduction Building UI in the client side using JavaScript involves retrieving JSON data from the server using REST APIs and processing. Similarly, Node.js could retrieve data from a datasource aโฆ
Build A Web App with VueJS, Spring Framework and MongoDB
Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is very easy to pick up and integrate with other libraries or existing projects. On the other hand, Vue is also perfectly capable of powering sophisticated Single-Page Applications when used in combination with modern tooling and support libraries.
This course combines Vue.JS, Spring Boot, MongoDB, Google SSO and etc into one web app - a message board project, as I believe the best way to learn is through hands-on development. With this DEMO project, you will know how things look like when they are working together. After that, you can put those components into your own project if you need to.
http://academy.learn4startup.com/p/SkNuVW6fe/build-a-message-board-app-with-vue-spring-and-mongodb/
Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is very easy to pick up and integrate with other libraries or existing projects. On the other hand, Vue is also perfectly capable of powering sophisticated Single-Page Applications when used in combination with modern tooling and support libraries.
This course combines Vue.JS, Spring Boot, MongoDB, Google SSO and etc into one web app - a message board project, as I believe the best way to learn is through hands-on development. With this DEMO project, you will know how things look like when they are working together. After that, you can put those components into your own project if you need to.
http://academy.learn4startup.com/p/SkNuVW6fe/build-a-message-board-app-with-vue-spring-and-mongodb/
Itโs Resilient CSS Week
Writing code that works in all web browsers at the same time is one of the most important things we do. New technology is coming out all the time. Yet many of the people visiting the websites we build are using old browsers. How can we use new CSS if itโs not supported in every browser โ especially when users keep using old, crufty browsers? Do we have to wait until 100% of people have a browsers with the new feature? Donโt we have to wait until Internet Explorer is dead before we can use the new stuff?
https://hacks.mozilla.org/2018/02/its-resilient-css-week/
Writing code that works in all web browsers at the same time is one of the most important things we do. New technology is coming out all the time. Yet many of the people visiting the websites we build are using old browsers. How can we use new CSS if itโs not supported in every browser โ especially when users keep using old, crufty browsers? Do we have to wait until 100% of people have a browsers with the new feature? Donโt we have to wait until Internet Explorer is dead before we can use the new stuff?
https://hacks.mozilla.org/2018/02/its-resilient-css-week/
Mozilla Hacks โ the Web developer blog
Itโs Resilient CSS Week โ Mozilla Hacks - the Web developer blog
Jen Simmons celebrates resilient CSS and shows you how it's done, in this week's Layout Land video series. Check out the opening episodes: Introduction to Resilient CSS and Can I ...