diff --git a/filter-table-all-next/.gitignore b/filter-table-all-next/.gitignore new file mode 100644 index 0000000..f992571 --- /dev/null +++ b/filter-table-all-next/.gitignore @@ -0,0 +1,108 @@ +# Others +package-lock.json +build* + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and *not* Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port diff --git a/filter-table-all-next/README.md b/filter-table-all-next/README.md new file mode 100644 index 0000000..5d1d30f --- /dev/null +++ b/filter-table-all-next/README.md @@ -0,0 +1,12 @@ +# webpack-js + +## Table of Contents +0. [General](#general) +1. [Links](#links) + +# General + +# Links + +* [React setup with webpack for beginners](https://dev.to/deepanjangh/react-setup-with-webpack-for-beginners-2a8k) +* [JavaScript Table Filter or Search | Add Filter In HTML CSS Table](https://webdevtrick.com/javascript-table-filter/) diff --git a/filter-table-all-next/package.json b/filter-table-all-next/package.json new file mode 100644 index 0000000..0fc3d14 --- /dev/null +++ b/filter-table-all-next/package.json @@ -0,0 +1,24 @@ +{ + "private": true, + "name": "webpack-js", + "description": "example using webpack for vanilla JavaScript", + "version": "0.0.1", + "main": "index.js", + "keywords": [ + "react", + "webpack" + ], + "author": "Software Ingenieur Begerad ", + "license": "GPL-3.0-or-later", + "engines": { + "node": ">=10" + }, + "scripts": { + "start": "webpack serve --config ./webpack.config.js --mode development" + }, + "devDependencies": { + "webpack": "^5.73.0", + "webpack-cli": "^4.9.2", + "webpack-dev-server": "^4.9.2" + } +} diff --git a/filter-table-all-next/public/index.html b/filter-table-all-next/public/index.html new file mode 100644 index 0000000..468cfc9 --- /dev/null +++ b/filter-table-all-next/public/index.html @@ -0,0 +1,125 @@ + + + + + React with webpack + + +
+ +

Table Filter JavaScript

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameEmailPhone NoID
John Doejohn.doe@gmail.com012345678901
Alen FoxAlen.fox@gmail.com015545678902
Rakesh Sharmarakesh.sharma@gmail.com675432890103
Bunty SinghBunty.singh@gmail.com567824159804
Sushant Rajputsushant.rajput@gmail.com67545780105
Sunny Sharmasunnysharma@gmail.com67512345106
Saurav Guptasaurav.gupta@gmail.com6123480107
Appu Khoteappu.khote@gmail.com6789456108
Sandeep Aryasandeep.arya@gmail.com74185296309
Vijay Mehravijay.mehra@gmail.com45685198210
+ +
+ + + + + diff --git a/filter-table-all-next/src/index.js b/filter-table-all-next/src/index.js new file mode 100644 index 0000000..eb171b6 --- /dev/null +++ b/filter-table-all-next/src/index.js @@ -0,0 +1 @@ +console.log("Hello World") diff --git a/filter-table-all-next/webpack.config.js b/filter-table-all-next/webpack.config.js new file mode 100644 index 0000000..f6f548c --- /dev/null +++ b/filter-table-all-next/webpack.config.js @@ -0,0 +1,12 @@ +//path is used to resolve properly across the OS +const path = require('path'); + +module.exports = { + //bundle *.js from this entry point + entry: path.resolve(__dirname, './src/index.js'), + //create output file to be linked to index.html + output: { + path: path.resolve(__dirname, './public'), + filename: 'bundle.js', + }, +};