1 |
mern-tl-button |
TailwindCSS Button |
Creates a basic TailwindCSS button. |
2 |
mern-tl-heading |
TailwindCSS Title/Heading |
Creates a heading component. |
3 |
mern-tl-paragraph |
TailwindCSS Paragraph |
Creates a paragraph component. |
4 |
mern-tl-card |
TailwindCSS Card |
Creates a card component. |
5 |
mern-tl-form |
TailwindCSS Form |
Creates a form component. |
6 |
mern-tl-input |
TailwindCSS Input Field |
Creates an input field. |
7 |
mern-tl-checkbox |
TailwindCSS Checkbox |
Creates a checkbox component. |
8 |
mern-tl-radio |
TailwindCSS Radio Button |
Creates a radio button component. |
9 |
mern-tl-dropdown |
TailwindCSS Dropdown Menu |
Creates a dropdown menu. |
10 |
mern-tl-navbar |
TailwindCSS Navbar |
Creates a basic navbar. |
11 |
mern-tl-sidebar |
TailwindCSS Sidebar |
Creates a sidebar component. |
12 |
mern-tl-modal |
TailwindCSS Modal |
Creates a modal component. |
13 |
mern-tl-footer |
TailwindCSS Footer |
Creates a footer component. |
14 |
mern-tl-alert |
TailwindCSS Alert |
Creates an alert component. |
15 |
mern-tl-badge |
TailwindCSS Badge |
Creates a badge component. |
16 |
mern-tl-tag |
TailwindCSS Tag |
Creates a tag component. |
17 |
mern-tl-tooltip |
TailwindCSS Tooltip |
Creates a tooltip component. |
18 |
mern-tl-progress-bar |
TailwindCSS Progress Bar |
Creates a progress bar. |
19 |
mern-tl-pagination |
TailwindCSS Pagination |
Creates a pagination component. |
20 |
mern-tl-avatar |
TailwindCSS Avatar |
Displays an avatar image. |
21 |
mern-tl-table |
TailwindCSS Table |
Creates a table component. |
22 |
mern-tl-accordion |
TailwindCSS Accordion |
Creates an accordion component. |
23 |
mern-tl-carousel |
TailwindCSS Carousel |
Creates a carousel component. |
24 |
mern-tl-image-gallery |
TailwindCSS Image Gallery |
Creates an image gallery. |
25 |
mern-tl-hero |
TailwindCSS Hero Section |
Creates a hero section. |
26 |
mern-tl-testimonials |
TailwindCSS Testimonials |
Displays customer testimonials. |
27 |
mern-tl-banner |
TailwindCSS Banner |
Creates a banner component. |
28 |
mern-tl-icon-list |
TailwindCSS Icon List |
Creates a list with icons. |
29 |
mern-tl-steps |
TailwindCSS Steps/Progress Indicator |
Creates a step indicator. |
30 |
mern-tl-calendar |
TailwindCSS Calendar |
Creates a calendar layout. |
31 |
mern-tl-rating-stars |
TailwindCSS Rating Stars |
Creates a star rating component. |
32 |
mern-tl-toast |
TailwindCSS Toast Notifications |
Creates a toast notification. |
33 |
mern-tl-search-bar |
TailwindCSS Search Bar |
Creates a search bar. |
34 |
mern-tl-pricing-table |
TailwindCSS Pricing Table |
Creates a pricing table. |
35 |
mern-tl-timeline |
TailwindCSS Timeline |
Creates a timeline component. |
36 |
mern-js-var |
Javascript Variables |
Declares a variable x with a value of 5. |
37 |
mern-js-const |
Javascript Constants |
Declares a constant PI with a value of 3.14. |
38 |
mern-js-type |
Javascript Data Types |
Returns the data type of variable x. |
39 |
mern-js-concat |
Javascript String Concatenation |
Concatenates two strings into str. |
40 |
mern-js-array |
Javascript Array Declaration |
Declares an array arr with three elements. |
41 |
mern-js-obj |
Javascript Object Declaration |
Declares an object obj with a key-value pair. |
42 |
mern-js-bool |
Javascript Boolean Values |
Declares a boolean variable isTrue. |
43 |
mern-js-undef |
Javascript Undefined Variable |
Declares a variable notDefined without initializing. |
44 |
mern-js-null |
Javascript Null Value |
Declares a variable emptyValue with a null value. |
45 |
mern-js-template |
Javascript Template Literals |
Creates a greeting using template literals. |
46 |
mern-js-str-length |
Javascript String Length |
Gets the length of the string str. |
47 |
mern-js-str-substring |
Javascript Substring |
Extracts a substring from str. |
48 |
mern-js-str-split |
Javascript String Split |
Splits str into an array based on the delimiter. |
49 |
mern-js-str-join |
Javascript String Join |
Joins array elements into a string with a delimiter. |
50 |
mern-js-str-replace |
Javascript String Replace |
Replaces occurrences of 'old' with 'new' in str. |
51 |
mern-js-str-uppercase |
Javascript String Uppercase |
Converts str to uppercase. |
52 |
mern-js-str-lowercase |
Javascript String Lowercase |
Converts str to lowercase. |
53 |
mern-js-str-trim |
Javascript Trim Whitespace |
Removes whitespace from both ends of str. |
54 |
mern-js-str-includes |
Javascript Check for Inclusion |
Checks if str includes 'text'. |
55 |
mern-js-str-repeat |
Javascript String Repeat |
Repeats the string 'a' three times. |
56 |
mern-js-arr-push |
Javascript Array Push |
Adds the element 4 to the end of the array. |
57 |
mern-js-arr-pop |
Javascript Array Pop |
Removes the last element from the array. |
58 |
mern-js-arr-shift |
Javascript Array Shift |
Removes the first element from the array. |
59 |
mern-js-arr-unshift |
Javascript Array Unshift |
Adds the element 0 to the beginning of the array. |
60 |
mern-js-arr-slice |
Javascript Array Slice |
Creates a new array containing elements from index 1 to 2. |
61 |
mern-js-arr-splice |
Javascript Array Splice |
Removes 2 elements starting from index 1. |
62 |
mern-js-arr-map |
Javascript Array Map |
Creates a new array with each element doubled. |
63 |
mern-js-arr-filter |
Javascript Array Filter |
Creates a new array with elements greater than 1. |
64 |
mern-js-arr-reduce |
Javascript Array Reduce |
Calculates the total sum of the array elements. |
65 |
mern-js-arr-find |
Javascript Find Element |
Finds the first element in the array that equals 2. |
66 |
mern-js-if |
Javascript If Statement |
Executes code if the condition is true. |
67 |
mern-js-else |
Javascript Else Statement |
Executes code if the previous if condition is false. |
68 |
mern-js-else-if |
Javascript Else If Statement |
Checks an additional condition if the previous if was false. |
69 |
mern-js-switch |
Javascript Switch Statement |
Executes code based on the value of a variable. |
70 |
mern-js-ternary |
Javascript Ternary Operator |
Returns 'yes' if condition is true, otherwise 'no'. |
71 |
mern-js-for |
Javascript For Loop |
Loops through the elements of the array. |
72 |
mern-js-while |
Javascript While Loop |
Repeats code as long as the condition is true. |
73 |
mern-js-do-while |
Javascript Do While Loop |
Executes code at least once and repeats while the condition is true. |
74 |
mern-js-for-each |
Javascript For Each Loop |
Executes code for each element in the array. |
75 |
mern-js-break |
Javascript Break Statement |
Exits from the current loop or switch statement. |
76 |
mern-js-function-decl |
Javascript Function Declaration |
Declares a standard function. |
77 |
mern-js-function-expr |
Javascript Function Expression |
Creates a function expression assigned to a variable. |
78 |
mern-js-arrow-function |
Javascript Arrow Function |
Defines a function using arrow syntax. |
79 |
mern-js-return |
Javascript Returning Values |
Returns a value from a function. |
80 |
mern-js-default-params |
Javascript Default Parameters |
Sets default values for function parameters. |
81 |
mern-js-rest-params |
Javascript Rest Parameters |
Allows a function to accept an indefinite number of arguments. |
82 |
mern-js-anon-func |
Javascript Anonymous Function |
Defines a function without a name. |
83 |
mern-js-iife |
Javascript IIFE |
Immediately Invoked Function Expression. |
84 |
mern-js-callback |
Javascript Callback Function |
A function that is passed as an argument to another function. |
85 |
mern-js-higher-order |
Javascript Higher-Order Function |
A function that takes another function as an argument. |
86 |
mern-js-create-object |
Javascript Create Object |
Creates an object with a key-value pair. |
87 |
mern-js-access-property |
Javascript Access Property |
Accesses a property of an object. |
88 |
mern-js-add-property |
Javascript Add Property |
Adds a new property to an object. |
89 |
mern-js-delete-property |
Javascript Delete Property |
Deletes a property from an object. |
90 |
mern-js-object-keys |
Javascript Object Keys |
Gets an array of keys from an object. |
91 |
mern-js-object-values |
Javascript Object Values |
Gets an array of values from an object. |
92 |
mern-js-object-entries |
Javascript Object Entries |
Gets an array of [key, value] pairs from an object. |
93 |
mern-js-merge-objects |
Javascript Merge Objects |
Merges properties from the source object into the target object. |
94 |
mern-js-spread-operator |
Javascript Spread Operator |
Creates a shallow copy of an object using the spread operator. |
95 |
mern-js-destructure-object |
Javascript Destructure Object |
Destructures a key from an object. |
96 |
mern-js-get-current-date |
Javascript Get Current Date |
Gets the current date and time. |
97 |
mern-js-format-date |
Javascript Format Date |
Formats the current date to a locale-specific string. |
98 |
mern-js-get-year |
Javascript Get Year |
Gets the year from the current date. |
99 |
mern-js-get-month |
Javascript Get Month |
Gets the month (0-11) from the current date. |
100 |
mern-js-get-day |
Javascript Get Day |
Gets the day of the month from the current date. |
101 |
mern-js-set-date |
Javascript Set Date |
Sets the day of the month for the current date. |
102 |
mern-js-compare-dates |
Javascript Compare Dates |
Compares two dates to check if one is after the other. |
103 |
mern-js-get-timestamp |
Javascript Get Timestamp |
Gets the current timestamp in milliseconds. |
104 |
mern-js-parse-date-string |
Javascript Parse Date String |
Parses a date string into a Date object. |
105 |
mern-js-get-timezone-offset |
Javascript Get Timezone Offset |
Gets the timezone offset in minutes for the current date. |
106 |
mern-js-json-stringify |
Javascript JSON Stringify |
Converts a JavaScript object to a JSON string. |
107 |
mern-js-json-parse |
Javascript JSON Parse |
Parses a JSON string and converts it back to a JavaScript object. |
108 |
mern-js-local-storage |
Javascript Local Storage |
Stores a value in the browser's local storage. |
109 |
mern-js-session-storage |
Javascript Session Storage |
Retrieves a value from the browser's session storage. |
110 |
mern-js-fetch-api |
Javascript Fetch API |
Makes an HTTP request and parses the response as JSON. |
111 |
mern-js-try-catch |
Javascript Try-Catch |
Executes code and handles any errors that occur. |
112 |
mern-js-set-timeout |
Javascript Set Timeout |
Executes code after a specified delay (in milliseconds). |
113 |
mern-js-set-interval |
Javascript Set Interval |
Executes code repeatedly at specified intervals (in milliseconds). |
114 |
mern-js-clear-timeout |
Javascript Clear Timeout |
Clears a timeout set with setTimeout. |
115 |
mern-js-clear-interval |
Javascript Clear Interval |
Clears an interval set with setInterval. |
116 |
mern-js-add-event-listener |
Javascript Add Event Listener |
Adds an event listener to a specified element. |
117 |
mern-js-remove-event-listener |
Javascript Remove Event Listener |
Removes an event listener from a specified element. |
118 |
mern-js-prevent-default |
Javascript Prevent Default |
Prevents the default action of an event. |
119 |
mern-js-stop-propagation |
Javascript Stop Propagation |
Stops the event from bubbling up the DOM. |
120 |
mern-js-access-event-target |
Javascript Access Event Target |
Accesses the target element of the event. |
121 |
mern-js-touch-events |
Javascript Touch Events |
Handles touch events on a specified element. |
122 |
mern-js-keyboard-events |
Javascript Keyboard Events |
Handles keyboard events in the document. |
123 |
mern-js-mouse-events |
Javascript Mouse Events |
Handles mouse events on a specified element. |
124 |
mern-js-custom-events |
Javascript Custom Events |
Creates a custom event with specified details. |
125 |
mern-js-dispatch-event |
Javascript Dispatch Event |
Dispatches an event on a specified element. |
126 |
mern-js-match-pattern |
Javascript Match Pattern |
Tests if a regex pattern matches a string. |
127 |
mern-js-replace-with-regex |
Javascript Replace with Regex |
Replaces occurrences of a pattern in a string. |
128 |
mern-js-extract-matches |
Javascript Extract Matches |
Extracts matches from a string based on a regex pattern. |
129 |
mern-js-split-by-pattern |
Javascript Split by Pattern |
Splits a string by a specified regex pattern. |
130 |
mern-js-search-pattern |
Javascript Search Pattern |
Searches for a pattern in a string and returns the index. |
131 |
mern-js-validate-email |
Javascript Validate Email |
Validates an email format using regex. |
132 |
mern-js-check-for-digits |
Javascript Check for Digits |
Checks if a string contains any digits. |
133 |
mern-js-remove-special-characters |
Javascript Remove Special Characters |
Removes special characters from a string. |
134 |
mern-js-escape-special-characters |
Javascript Escape Special Characters |
Escapes special characters in a string for regex. |
135 |
mern-js-find-all-matches |
Javascript Find All Matches |
Finds all matches of a regex pattern in a string. |
136 |
mern-re-component-creation |
Component Creation |
Basic structure for creating a React component. |
137 |
mern-re-functional |
Functional Component |
Template for a functional component. |
138 |
mern-re-class |
Class Component |
Template for a class component. |
139 |
mern-re-jsx |
JSX Syntax |
Example demonstrating JSX syntax. |
140 |
mern-re-props |
Props Usage |
Example of using props in a component. |
141 |
mern-re-state |
State Management |
Basic state management using useState. |
142 |
mern-re-useState |
useState Hook |
Example of using the useState hook. |
143 |
mern-re-useEffect |
useEffect Hook |
Example of using the useEffect hook. |
144 |
mern-re-event |
Event Handling |
Basic example of event handling in a component. |
145 |
mern-re-form |
Form Handling |
Example of handling forms in React. |
146 |
mern-re-controlled |
Controlled Components |
Example of a controlled component. |
147 |
mern-re-uncontrolled |
Uncontrolled Components |
Example of an uncontrolled component. |
148 |
mern-re-conditional |
Conditional Rendering |
Example of conditional rendering. |
149 |
mern-re-list |
List Rendering |
Example of list rendering in React. |
150 |
mern-re-key |
Key Prop |
Example of using the key prop for list items. |
151 |
mern-re-fragment |
Fragment |
Example of using React Fragment. |
152 |
mern-re-context |
Context API |
Example of setting up Context API. |
153 |
mern-re-useContext |
useContext Hook |
Example of using the useContext hook. |
154 |
mern-re-memoization |
Memoization |
Example of memoization with useMemo. |
155 |
mern-re-react-memo |
React.memo |
Example of using React.memo for component optimization. |
156 |
mern-re-useMemo |
useMemo Hook |
Example of using the useMemo hook. |
157 |
mern-re-useCallback |
useCallback Hook |
Example of using the useCallback hook. |
158 |
mern-re-customHook |
Custom Hooks |
Example of creating a custom hook. |
159 |
mern-re-refUsage |
Ref Usage |
Example of using refs in React. |
160 |
mern-re-useRef |
useRef Hook |
Example of using the useRef hook. |
161 |
mern-re-sideEffects |
Handling Side Effects |
Example of handling side effects with useEffect. |
162 |
mern-re-routing |
Routing with React Router |
Example of routing using React Router. |
163 |
mern-re-link |
Link Component |
Example of using the Link component in React Router. |
164 |
mern-re-navlink |
NavLink Component |
Example of using the NavLink component in React Router. |
165 |
mern-re-useParams |
useParams Hook |
Example of using the useParams hook in React Router. |
166 |
mern-re-useHistory |
useHistory Hook |
Example of using the useHistory hook. |
167 |
mern-re-useLocation |
useLocation Hook |
Example of using the useLocation hook. |
168 |
mern-re-redirect |
Redirecting |
Example of redirecting with React Router. |
169 |
mern-re-protectedRoute |
Protected Routes |
Example of a protected route. |
170 |
mern-re-lazyLoad |
Lazy Loading Components |
Example of lazy loading components. |
171 |
mern-re-errorBoundary |
Error Boundaries |
Example of an error boundary. |
172 |
mern-re-hoc |
Higher-Order Components |
Example of a higher-order component. |
173 |
mern-re-renderProps |
Render Props |
Example of using render props. |
174 |
mern-re-portals |
Portals |
Example of using portals in React. |
175 |
mern-re-devTools |
React DevTools |
Description on using React DevTools. |
176 |
mern-re-fragment |
Fragment Syntax |
Example of using React Fragment syntax. |
177 |
mern-re-propTypes |
PropTypes for Validation |
Example of using PropTypes for prop validation. |
178 |
mern-re-defaultProps |
Default Props |
Example of setting default props. |
179 |
mern-re-cssModules |
Style with CSS Modules |
Example of styling with CSS Modules. |
180 |
mern-re-inlineStyles |
Inline Styles |
Example of using inline styles in React. |
181 |
mern-re-styledComponents |
Styled Components |
Example of using styled-components library. |
182 |
mern-re-responsiveDesign |
Responsive Design |
Example of responsive design implementation. |
183 |
mern-re-reactBootstrap |
React Bootstrap |
Example of using React Bootstrap components. |
184 |
mern-re-materialUI |
Material-UI Integration |
Example of integrating Material-UI components. |
185 |
mern-re-redux |
Using Redux |
Example of using Redux in a React component. |
186 |
mern-re-reduxToolkit |
Redux Toolkit |
Example of setting up Redux Toolkit. |
187 |
mern-re-useSelector |
useSelector Hook |
Example of using useSelector hook to access Redux state. |
188 |
mern-re-useDispatch |
useDispatch Hook |
Example of using useDispatch hook to dispatch actions. |
189 |
mern-re-thunkMiddleware |
Thunk Middleware |
Example of applying Thunk middleware in Redux. |
190 |
mern-re-axios |
Axios for HTTP Requests |
Example of making HTTP requests using Axios. |
191 |
mern-re-fetchAPI |
Fetch API |
Example of making HTTP requests using Fetch API. |
192 |
mern-re-corsHandling |
CORS Handling |
Example of handling CORS in an Express app. |
193 |
mern-re-errorHandlingAPI |
Error Handling in API Calls |
Example of error handling in API calls. |
194 |
mern-re-debouncingInput |
Debouncing Input |
Example of debouncing input changes. |
195 |
mern-re-throttlingScroll |
Throttling Scroll Events |
Example of throttling scroll events. |
196 |
mern-re-suspense |
React Suspense |
Example of using React Suspense for lazy loading components. |
197 |
mern-re-codeSplitting |
Code Splitting |
Example of code splitting using React.lazy. |
198 |
mern-re-svgUsage |
SVG Usage |
Example of using SVG in a React component. |
199 |
mern-re-dynamicImports |
Dynamic Imports |
Example of dynamic imports in React. |
200 |
mern-re-customErrorPage |
Custom Error Pages |
Example of creating a custom error page in React. |
201 |
mern-re-seoOptimization |
SEO Optimization |
Example of basic SEO optimization in React. |
202 |
mern-re-metaTagsManagement |
Meta Tags Management |
Example of managing meta tags using react-helmet. |
203 |
mern-re-testingWithJest |
Testing with Jest |
Example of testing a React component with Jest. |
204 |
mern-re-testingWithRTL |
Testing with React Testing Library |
Example of testing a React component with React Testing Library. |
205 |
mern-re-snapshotTesting |
Snapshot Testing |
Example of snapshot testing in React. |
206 |
mern-re-mockingAPICalls |
Mocking API Calls |
Example of mocking API calls using axios-mock-adapter. |
207 |
mern-re-e2eTestingCypress |
End-to-End Testing with Cypress |
Example of a simple end-to-end test with Cypress. |
208 |
mern-re-usingTypeScript |
Using TypeScript with React |
Example of using TypeScript with a React functional component. |
209 |
mern-re-creatingReusableComponents |
Creating Reusable Components |
Example of creating a reusable button component in React. |
210 |
mern-re-usingHooksInClassComponents |
Using React Hooks in Class Components |
Example of using React hooks within a class component. |
211 |
mern-re-handlingKeyboardEvents |
Handling Keyboard Events |
Example of handling keyboard events in React. |
212 |
mern-re-mouseEventsHandling |
Mouse Events Handling |
Example of handling mouse events in React. |
213 |
mern-re-managingLifecycles |
Managing Component Lifecycles |
Example of managing component lifecycle methods in a class component. |
214 |
mern-re-optimizingPerformance |
Optimizing Performance |
Example of optimizing performance with React.memo. |
215 |
mern-re-serverSideRendering |
Server-Side Rendering (SSR) |
Example of server-side rendering in a Node.js app. |
216 |
mern-re-staticSiteGeneration |
Static Site Generation (SSG) |
Example of static site generation with Next.js. |
217 |
mern-re-apiIntegration |
API Integration |
Example of integrating with an API using Axios. |
218 |
mern-re-usingGraphQL |
Using GraphQL |
Example of using GraphQL with Apollo Client. |
219 |
mern-re-webSockets |
WebSockets with React |
Example of using WebSockets in a React app. |
220 |
mern-re-webWorkers |
Web Workers |
Example of using Web Workers in a React app. |
221 |
mern-re-reactHookForm |
React Hook Form |
Example of using React Hook Form for form handling. |
222 |
mern-re-formik |
Formik for Forms |
Example of using Formik for form management. |
223 |
mern-re-analyticsIntegration |
Integrating with Analytics |
Example of integrating with Google Analytics. |
224 |
mern-re-environmentVariables |
Environment Variables |
Example of using environment variables in React. |
225 |
mern-re-usingDotenv |
Using dotenv |
Example of using dotenv to manage environment variables. |
226 |
mern-re-reduxSaga |
Managing Side Effects with Redux-Saga |
Example of managing side effects using Redux-Saga. |
227 |
mern-re-reduxPersist |
Persisting State with Redux Persist |
Example of persisting state with Redux Persist. |
228 |
mern-re-i18n |
Internationalization (i18n) |
Example of setting up internationalization with i18next. |
229 |
mern-re-usingNextJS |
Using Next.js |
Example of using Next.js for a basic app. |
230 |
mern-re-pwa |
Building Progressive Web Apps (PWA) |
Example of setting up a service worker for a PWA. |
231 |
mern-re-customWebpack |
Customizing Webpack Config |
Customize the Webpack configuration using ES6 syntax |
232 |
mern-re-accessibility |
Handling Accessibility (a11y) |
Example of handling accessibility in React. |
233 |
mern-re-keyboardNavigation |
Keyboard Navigation |
Example of handling keyboard navigation. |
234 |
mern-re-intersectionObserver |
Using the Intersection Observer API |
Example of using the Intersection Observer API. |
235 |
mern-re-recoil |
State Management with Recoil |
Example of state management using Recoil. |
236 |
mern-ex-app |
Creating Express App |
Create an Express app |
237 |
mern-ex-middleware |
Middleware Usage |
Use middleware in Express |
238 |
mern-ex-routing |
Routing |
Set up routing in Express |
239 |
mern-ex-get |
Handling GET Requests |
Handle GET requests in Express |
240 |
mern-ex-post |
Handling POST Requests |
Handle POST requests in Express |
241 |
mern-ex-put |
Handling PUT Requests |
Handle PUT requests in Express |
242 |
mern-ex-delete |
Handling DELETE Requests |
Handle DELETE requests in Express |
243 |
mern-ex-crud |
CRUD API Structure |
Basic CRUD API structure |
244 |
mern-ex-error-handler |
Error Handling Middleware |
Add error handling middleware in Express |
245 |
mern-ex-static |
Serving Static Files |
Serve static files in Express |
246 |
mern-ex-cors |
CORS Middleware |
Enable CORS in Express |
247 |
mern-ex-env |
Environment Variables2 |
Use environment variables with dotenv |
248 |
mern-ex-body-parser |
Body Parsing |
Parse request body in Express |
249 |
mern-ex-mongoose |
Using Mongoose for MongoDB |
Connect to MongoDB using Mongoose |
250 |
mern-ex-multer |
File Uploads with Multer |
Handle file uploads with Multer |
251 |
mern-ex-jwt |
JWT Authentication |
Authenticate with JWT in Express |
252 |
mern-ex-logger |
Logging Requests |
Log requests with Morgan in Express |
253 |
mern-ex-helmet |
Setting Security Headers |
Set security headers in Express with Helmet |
254 |
mern-no-app |
Creating Node.js App |
Create a basic Node.js app |
255 |
mern-no-env |
Reading Environment Variables |
Read environment variables in Node.js |
256 |
mern-no-server |
Setting Up a Basic Server |
Set up a basic HTTP server in Node.js |
257 |
mern-no-modules |
Using Built-in Modules (fs, http) |
Use built-in modules like fs and http in Node.js |
258 |
mern-no-crud-http |
CRUD API Structure http |
CRUD API structure in Node.js |
259 |
mern-no-fs |
File System Operations |
Perform file system operations using fs module |
260 |
mern-no-streams |
Handling Streams |
Handle file streams in Node.js |
261 |
mern-no-path |
Path Module Usage |
Use the path module in Node.js |
262 |
mern-no-event |
Event Emitter |
Handle events using EventEmitter in Node.js |
263 |
mern-no-buffer |
Buffer Handling |
Handle buffer operations in Node.js |
264 |
mern-no-global |
Global Objects |
Access global objects in Node.js |
265 |
mern-no-process |
Process Object |
Use the process object to access environment variables |
266 |
mern-no-child |
Child Processes |
Run a child process in Node.js |
267 |
mern-no-http-request |
Creating HTTP Requests |
Create HTTP requests in Node.js |
268 |
mern-no-post |
Handling POST Data |
Handle POST data in Node.js |
269 |
mern-no-mod-create |
Creating Modules |
Create a module in Node.js |
270 |
mern-no-mod-import |
Exporting/Importing Modules |
Import and export modules in Node.js |
271 |
mern-no-json |
Working with JSON Files |
Read and parse JSON files in Node.js |
272 |
mern-no-npm |
Using Node Package Manager (npm) |
Basic usage of npm in Node.js |
273 |
mern-no-commonjs |
Using CommonJS |
Use CommonJS module system in Node.js |
274 |
mern-no-es6 |
Using ES6 Modules |
Use ES6 modules in Node.js |
275 |
mern-no-file-upload |
File Upload Handling |
Handle file uploads with Multer |
276 |
mern-no-error |
Error Handling |
Set up error handling middleware |
277 |
mern-no-db |
Connecting to Databases (MySQL/MongoDB) |
Connect to MongoDB using Mongoose |
278 |
mern-no-middleware |
Middleware Functions |
Create middleware functions in Node.js |
279 |
mern-no-url |
URL Handling |
Handle URL parsing in Node.js |
280 |
mern-no-cluster |
Cluster Module for Multi-core Servers |
Use the Cluster module for multi-core servers |
281 |
mern-no-session |
Session Management |
Manage sessions in Node.js using express-session |
282 |
mern-no-jwt |
Authentication with JWT |
Implement JWT authentication in Node.js |
283 |
mern-no-async |
Using Promises and Async/Await |
Use Promises and Async/Await in Node.js |
284 |
mern-no-axios |
Making HTTP Requests with Axios |
Make HTTP requests with Axios |
285 |
mern-no-cors |
CORS Setup |
Set up CORS in Express |
286 |
mern-no-rate-limit |
Rate Limiting |
Implement rate limiting in Express |
287 |
mern-no-websocket |
Implementing WebSockets |
Implement WebSockets with Socket.io |
288 |
mern-no-helmet |
Using Helmet for Security |
Use Helmet middleware for security |
289 |
mern-no-compression |
Compression Middleware |
Use compression middleware to optimize response sizes |
290 |
mern-no-session-cookie |
Session Cookies |
Manage session cookies in Express |
291 |
mern-no-rest-api |
Creating a REST API |
Create a basic REST API in Express |
292 |
mern-no-transaction |
Database Transactions |
Handle database transactions in MongoDB |
293 |
mern-no-try-catch |
Handling Errors with try-catch |
Handle errors using try-catch blocks |
294 |
mern-no-logging |
Setting up Logging |
Set up logging for requests in Express |
295 |
mern-no-migration |
Database Migrations |
Run database migrations |
296 |
mern-no-unit-test |
Unit Testing with Mocha/Chai |
Set up unit testing using Mocha and Chai |
297 |
mern-no-integration-test |
Integration Testing |
Perform integration testing on endpoints |
298 |
mern-no-jwt-auth |
Working with JWT for Auth |
Use JWT for authentication |
299 |
mern-no-swagger |
API Documentation with Swagger |
Set up API documentation using Swagger |
300 |
mern-no-static |
Static File Serving |
Serve static files in Express |
301 |
mern-no-validation |
Request Validation |
Validate requests with express-validator |
302 |
mern-no-http |
Using Node's HTTP Module |
Create a basic HTTP server using Node's HTTP module |
303 |
mern-mo-connect |
Connecting to MongoDB |
Connect to MongoDB database |
304 |
mern-mo-create-db |
Creating a Database |
Create a new MongoDB database |
305 |
mern-mo-create-collection |
Creating a Collection |
Create a new collection in the database |
306 |
mern-mo-insert-doc |
Inserting Documents |
Insert a new document into the collection |
307 |
mern-mo-find-doc |
Finding Documents |
Find documents in the collection |
308 |
mern-mo-update-doc |
Updating Documents |
Update documents in the collection |
309 |
mern-mo-delete-doc |
Deleting Documents |
Delete documents from the collection |
310 |
mern-mo-mongoose-schema |
Using Mongoose for Schema |
Define a schema using Mongoose |
311 |
mern-mo-def-model |
Defining a Model |
Define a model for the collection |
312 |
mern-mo-mongoose-validation |
Validating with Mongoose |
Define validation rules with Mongoose |
313 |
mern-mo-index-fields |
Indexing Fields |
Create an index on a field for faster queries |
314 |
mern-mo-aggregation |
Aggregation Framework |
Use aggregation framework for complex queries |
315 |
mern-mo-transactions |
Using Transactions |
Use transactions for multiple operations |
316 |
mern-mo-populate |
Populating References |
Populate referenced documents in queries |
317 |
mern-mo-relationships |
Handling Relationships |
Define relationships between documents |
318 |
mern-mo-compound-index |
Creating Compound Indexes |
Create compound indexes for multiple fields |
319 |
mern-mo-mongodb-compass |
Using MongoDB Compass |
Introduction to using MongoDB Compass |
320 |
mern-mo-change-streams |
Setting Up Change Streams |
Set up change streams to monitor changes |
321 |
mern-mo-full-text-search |
Implementing Full-Text Search |
Implement full-text search on a collection |
322 |
mern-mo-backup-restore |
Backup and Restore Operations |
Guide for backing up and restoring MongoDB data |
323 |
mern-mo-query-operators |
Querying with Operators |
Use operators like $gt, $lt, etc. for querying |
324 |
mern-mo-large-datasets |
Handling Large Datasets |
Techniques to handle large datasets in MongoDB |
325 |
mern-mo-gridfs |
Using GridFS for File Storage |
Use GridFS for storing and retrieving files |
326 |
mern-mo-sharding |
Sharding in MongoDB |
Implement sharding to scale MongoDB |
327 |
mern-mo-replica-set |
Replica Set Configuration |
Configure replica sets for fault tolerance |
328 |
mern-mo-database-profiling |
Database Profiling |
Profile database operations to identify slow queries |
329 |
mern-mo-capped-collections |
Implementing Capped Collections |
Create capped collections for fixed-size logs |
330 |
mern-mo-user-roles |
Creating User Roles |
Define user roles for access control in MongoDB |
331 |
mern-mo-document-validation |
Enforcing Document Validation |
Use Mongoose schema validation for documents |
332 |
mern-mo-concurrency |
Handling Concurrency |
Manage concurrent updates to documents in MongoDB |
333 |
mern-mo-env-vars |
Using Environment Variables |
Load environment variables from a .env file |
334 |
mern-mo-query-performance |
Optimizing Query Performance |
Improve query performance with best practices |
335 |
mern-mo-schema-changes |
Handling Schema Changes |
Manage changes to your data schema effectively |
336 |
mern-mo-aggregation-pipelines |
Using Aggregation Pipelines |
Perform complex data transformations with aggregation |
337 |
mern-mo-express-mongo |
Using MongoDB with Express |
Set up Express routes for MongoDB interaction |
338 |
mern-mo-secure-mongo |
Securing MongoDB Instances |
Protect your MongoDB instances from unauthorized access |
339 |
mern-mo-data-migration |
Data Migration Strategies |
Plan and execute strategies for data migration |
340 |
mern-mo-monitor-performance |
Monitoring MongoDB Performance |
Keep track of MongoDB performance metrics |
341 |
mern-mo-data-modeling |
Data Modeling Best Practices |
Follow best practices for data modeling in MongoDB |
342 |
mern-mo-bson-format |
Using BSON Format |
Utilize BSON format for MongoDB documents |
343 |
mern-mo-mongo-shell |
Using MongoDB Shell |
Use the MongoDB shell for executing queries and commands |
344 |
mern-mo-query-subdocuments |
Querying Subdocuments |
Perform queries on nested subdocuments in MongoDB |
345 |
mern-mo-react-mongo |
Using MongoDB with React |
Set up a connection between MongoDB and React |
346 |
mern-mo-atlas-config |
Configuring MongoDB Atlas |
Manage your cloud MongoDB database with Atlas |
347 |
mern-mo-manage-views |
Creating and Managing Views |
Utilize views to simplify complex queries |
348 |
mern-mo-atlas-alerts |
Setting Up Alerts in Atlas |
Stay informed about important database events |
349 |
mern-mo-handle-json |
Handling JSON Data |
Efficiently manage JSON data within MongoDB |
350 |
mern-mo-serverless-mongo |
Using MongoDB in Serverless Functions |
Utilize MongoDB in serverless architectures |
351 |
mern-mo-encryption-at-rest |
Data Encryption at Rest |
Protect your data with encryption while at rest |