/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.blazemeter.com
| | cloudblogger.co.in
22.7 parsecs away

Travel
| | IntroductionLimitationsOptionsAdvanced Options Introduction vRO doesn't use a regular JavaScript engine such as the ones that run in the browser or server side Node.js . It uses the Rhino engine, which is based on Java, and as such it has a lot of quirky differences with regular JavaScript. There are quite a few differences in syntax...
| | paweldu.dev
8.3 parsecs away

Travel
| | If you use just one or a few Lodash functions in a file, try importing them directly from their respective files, one by one: import _ from 'lodash'; // bad - 70.5K (gzipped: 24.4K) import { has } from 'lodash'; // bad - 70.5K (gzipped: 24.4K) import has from 'lodash/has'; // good - 9K (gzipped: 2.7K) Alternatively, one can use babel-plugin-lodash or lodash-es. These packages come with sets of restrictions though.
| | www.taniarascia.com
28.0 parsecs away

Travel
| | I've been hearing about React since I first started learning JavaScript, but I'll admit I took one look at it and it scared me. I saw what
| | sapegin.me
45.0 parsecs away

Travel
| [AI summary] A blog post discussing the use of React's useReducer hook with TypeScript, focusing on type definition challenges and providing a code example.