Best JavaScript code snippet using ava
compile.js
Source:compile.js
1var fs = require('fs');2var fse = require('fs-extra');3var asar = require('asar');4var buildify = require('buildify');5// DELETE CACHE6console.log("Deleting cache");7fse.deleteSync("compiled/mac");8fse.deleteSync("compiled/win");9/**10 * WINDOWS11 */12console.log("=== WINDOWS ===");13fse.copySync('index.html', 'compiled/win/app/index.html');14// copy main15fse.copySync('main.js', 'compiled/win/app/main.js');16fse.copySync('package.json', 'compiled/win/app/package.json');17// copy styles18fse.copySync('styles/bootstrap.css', 'compiled/win/app/styles/bootstrap.css');19fse.copySync('styles.css', 'compiled/win/app/styles.css');20// copy libs21//fse.copySync('libs/parse-1.3.5.min.js', 'compiled/win/app/libs/parse-1.3.5.min.js');22fse.copySync('libs/jquery.min.js', 'compiled/win/app/ace/jquery.min.js');23//fse.copySync('libs/bootstrap.min.js', 'compiled/win/app/libs/bootstrap.min.js');24//fse.copySync('libs/angular.min.js', 'compiled/win/app/libs/angular.min.js');25//fse.copySync('libs/moment-with-locales.min.js', 'compiled/win/app/libs/moment-with-locales.min.js');26//fse.copySync('libs', 'compiled/win/app/libs');27fse.copySync('ace', 'compiled/win/app/ace');28fse.copySync('locale', 'compiled/win/app/locale');29// copy app30fse.copySync('app/app.min.js', 'compiled/win/app/app/app.min.js');31// copy template32fse.copySync('main.html', 'compiled/win/app/main.html');33fse.copySync('login.html', 'compiled/win/app/login.html');34fse.copySync('preferences.html', 'compiled/win/app/preferences.html');35// copy fonts36fse.copySync('fonts', 'compiled/win/app/fonts');37// copy images38fse.copySync('logo.png', 'compiled/win/app/logo.png');39fse.copySync('triangle.png', 'compiled/win/app/triangle.png');40fse.copySync('offline.png', 'compiled/win/app/offline.png');41fse.copySync('close-idle.png', 'compiled/win/app/close-idle.png');42fse.copySync('minimize-idle.png', 'compiled/win/app/minimize-idle.png');43fse.copySync('maximize-idle.png', 'compiled/win/app/maximize-idle.png');44fse.copySync('themes', 'compiled/win/app/themes');45// copy modules46fse.copySync('node_modules/electron-toaster', 'compiled/win/app/node_modules/electron-toaster');47asar.createPackage('compiled/win/app', 'compiled/win/app.asar', function() {48 console.log('ASAR done.');49 fse.deleteSync("compiled/win/app/");50 fse.deleteSync("/Users/Synapse/Downloads/electron-v0.25.1-darwin-x64/Electron.app/Contents/Resources/app.asar");51 fse.copySync('compiled/win/app.asar', '/Users/Synapse/Downloads/electron-v0.25.1-darwin-x64/Electron.app/Contents/Resources/app.asar');52 //fse.deleteSync("/Volumes/C/Users/IEUser/Desktop/electron-v0.30.2-win32-ia32/resources/app.asar");53 //fse.copySync('compiled/win/app.asar', '/Volumes/C \1/Users/IEUser/Desktop/electron-v0.30.2-win32-ia32/resources/app.asar');54});55/**56 * MAC57 */58console.log("=== MAC ===");59// COMPILE HTML60var compileHTML = fs.readFileSync("compile.html").toString();61var mainHTML = fs.readFileSync("main.html").toString();62var loginHTML = fs.readFileSync("login.html").toString();63var prefsHTML = fs.readFileSync("preferences.html").toString();64compileHTML = compileHTML.replace('<!--MAIN-->', mainHTML);65compileHTML = compileHTML.replace('<!--LOGIN-->', loginHTML);66compileHTML = compileHTML.replace('<!--PREFERENCES-->', prefsHTML);67// COMBINE APP68var appSRC = fs.readFileSync("app/app.min.js", "utf8").toString();69// COMPILE CSS70var compileCSS = fs.readFileSync("styles.css").toString();71var compileBOOTSTRAP = fs.readFileSync("styles/bootstrap.css").toString();72compileHTML = compileHTML.replace('<!--APPSECTION-->', appSRC);73compileHTML = compileHTML.replace('<!--STYLE-->', compileCSS);74compileHTML = compileHTML.replace('<!--BOOTSTRAP-->', compileBOOTSTRAP);75fs.writeFileSync("debug.html", compileHTML);76var compileHTML64 = new Buffer(compileHTML).toString('base64');77var compileHTMLh = '#define HTML @"' + compileHTML64 + '"';78fs.mkdirSync("compiled/mac/");79fs.writeFileSync("compiled/mac/html.h", compileHTMLh);...
webpack.config.js
Source:webpack.config.js
1const currentTask = process.env.npm_lifecycle_event;2const path = require("path");3const Dotenv = require("dotenv-webpack");4const { CleanWebpackPlugin } = require("clean-webpack-plugin");5const HtmlWebpackHarddiskPlugin = require("html-webpack-harddisk-plugin");6const HtmlWebpackPlugin = require("html-webpack-plugin");7const fse = require("fs-extra");8class RunAfterCompile {9 apply(compiler) {10 compiler.hooks.done.tap("Copy files", function () {11 fse.copySync("./app/css/reset.css", "./dist/css/reset.css");12 fse.copySync("./app/css/styles.css", "./dist/css/styles.css");13 fse.copySync("./app/img/BeOS_person.png", "./dist/img/BeOS_person.png");14 fse.copySync("./app/img/BeOS_people.png", "./dist/img/BeOS_people.png");15 fse.copySync("./app/img/logo.png", "./dist/img/logo.png");16 fse.copySync("./app/img/bg.gif", "./dist/img/bg.gif");17 fse.copySync("./app/img/alicia_silverstone.jpg", "./dist/img/alicia_silverstone.jpg");18 fse.copySync("./app/img/alyson_hannigan.jpg", "./dist/img/alyson_hannigan.jpg");19 fse.copySync("./app/img/elizabeth_berkley.jpg", "./dist/img/elizabeth_berkley.jpg");20 fse.copySync("./app/img/jaleel_white.jpg", "./dist/img/jaleel_white.jpg");21 fse.copySync("./app/img/jessica_biel.jpg", "./dist/img/jessica_biel.jpg");22 fse.copySync("./app/img/leo_dicaprio.jpg", "./dist/img/leo_dicaprio.jpg");23 fse.copySync("./app/img/paul_rudd.jpg", "./dist/img/paul_rudd.jpg");24 fse.copySync("./app/img/tiffani_thiessen.jpg", "./dist/img/tiffani_thiessen.jpg");25 fse.copySync("./app/img/tom_cruise.jpeg", "./dist/img/tom_cruise.jpeg");26 fse.copySync("./app/img/main_profile.jpg", "./dist/img/main_profile.jpg");27 fse.copySync("./app/_redirects", "./dist/_redirects");28 fse.copySync("./app/netlify.toml", "./dist/netlify.toml");29 });30 }31}32config = {33 entry: "./app/Main.js",34 output: {35 publicPath: "/",36 path: path.resolve(__dirname, "app"),37 filename: "bundled.js"38 },39 plugins: [40 new Dotenv(),41 new HtmlWebpackPlugin({42 filename: "index.html",43 template: "app/index-template.html",44 alwaysWriteToDisk: true45 }),46 new HtmlWebpackHarddiskPlugin()47 ],48 mode: "development",49 module: {50 rules: [51 {52 test: /\.js$/,53 exclude: /(node_modules)/,54 use: {55 loader: "babel-loader",56 options: {57 presets: ["@babel/preset-react", ["@babel/preset-env", { targets: { node: "12" } }]]58 }59 }60 }61 ]62 }63};64if (currentTask == "webpackDev" || currentTask == "dev") {65 config.devtool = "source-map";66 config.devServer = {67 port: 3000,68 contentBase: path.join(__dirname, "app"),69 hot: true,70 historyApiFallback: { index: "index.html" }71 };72}73if (currentTask == "webpackBuild") {74 config.plugins.push(new CleanWebpackPlugin(), new RunAfterCompile());75 config.mode = "production";76 config.output = {77 publicPath: "/",78 path: path.resolve(__dirname, "dist"),79 filename: "[name].[chunkhash].js",80 chunkFilename: "[name].[chunkhash].js"81 };82}...
copy.js
Source:copy.js
1const fse = require("fs-extra")2Promise.all([3 fse.copy('./loading', './app_dist/loading'),4 fse.copy('./scripts', './app_dist/scripts'),5 fse.copy('./public', './app_dist/public'),6 fse.copyFile('./package.json', './app_dist/package.json'),7 fse.copyFile('./modules/sdk/database/schema_1.0.json', './app_dist/modules/sdk/database/schema_1.0.json'),8 fse.copy('./OpenRAP/dist/project-sunbird-OpenRAP-1.0.2.tgz', 'app_dist/OpenRAP/dist/project-sunbird-OpenRAP-1.0.2.tgz'),9 fse.copy('./logo.png', 'app_dist/logo.png'),10 fse.copy('./../app/resourcebundles/json/', './app_dist/openrap-sunbirded-plugin/data/resourceBundles'),11 fse.copy('./helper/appconfig.desktop', './app_dist/helper/appconfig.desktop')...
Using AI Code Generation
1fse.copy('./source', './destination', err => {2 if (err) return console.error(err)3 console.log('success!')4})5fse.copySync('./source', './destination')6console.log('success!')7fse.copySync('./source', './destination')8console.log('success!')9fse.copy('./source', './destination', err => {10 if (err) return console.error(err)11 console.log('success!')12})13fse.copySync('./source', './destination')14console.log('success!')15fse.copySync('./source', './destination')16console.log('success!')
Using AI Code Generation
1const fse = require('fs-extra');2fse.copy('src', 'dest', err => {3 if (err) return console.error(err)4 console.log("success!")5})6const fs = require('fs');7fs.copyFile('src', 'dest', err => {8 if (err) return console.error(err)9 console.log("success!")10})11const fs = require('fs');12fs.copyFileSync('src', 'dest', err => {13 if (err) return console.error(err)14 console.log("success!")15})16const fs = require('fs');17fs.copy('src', 'dest', err => {18 if (err) return console.error(err)19 console.log("success!")20})21const fs = require('fs');22fs.copySync('src', 'dest', err => {23 if (err) return console.error(err)24 console.log("success!")25})26const fse = require('fs-extra');27fse.copy('src', 'dest', err => {28 if (err) return console.error(err)29 console.log("success!")30})31const fse = require('fs-extra');32fse.copySync('src', 'dest', err => {33 if (err) return console.error(err)34 console.log("success!")35})36const fse = require('fs-extra');37fse.copyFile('src', 'dest', err => {38 if (err) return console.error(err)39 console.log("success!")40})41const fse = require('fs-extra');42fse.copyFileSync('src', 'dest', err => {43 if (err) return console.error(err
Using AI Code Generation
1const test = require('ava');2const fse = require('fs-extra');3test('copy file', t => {4 return fse.copy('test.txt', 'test1.txt')5 .then(() => {6 return fse.readFile('test1.txt', 'utf8')7 .then(data => {8 t.is(data, 'hello world');9 });10 });11});12const test = require('ava');13const fse = require('fs-extra');14test('copy file', t => {15 return fse.copy('test.txt', 'test1.txt')16 .then(() => {17 return fse.readFile('test1.txt', 'utf8')18 .then(data => {19 t.is(data, 'hello world');20 });21 });22});23const test = require('ava');24const fse = require('fs-extra');25test('copy file', t => {26 return fse.copy('test.txt', 'test1.txt')27 .then(() => {28 return fse.readFile('test1.txt', 'utf8')29 .then(data => {30 t.is(data, 'hello world');31 });32 });33});34const test = require('ava');35const fse = require('fs-extra');36test('copy file', t => {37 return fse.copy('test.txt', 'test1.txt')38 .then(() => {39 return fse.readFile('test1.txt', 'utf8')40 .then(data => {41 t.is(data, 'hello world');42 });43 });44});
Using AI Code Generation
1const fse = require('fs-extra');2fse.copy('test.txt', 'test1.txt')3 .then(() => console.log('success!'))4 .catch(err => console.error(err));5fse.move('test.txt', 'test1.txt')6 .then(() => console.log('success!'))7 .catch(err => console.error(err));8fse.remove('test.txt')9 .then(() => console.log('success!'))10 .catch(err => console.error(err));11fse.emptyDir('test')12 .then(() => console.log('success!'))13 .catch(err => console.error(err));
Using AI Code Generation
1var fse = require('fs-extra');2var fs = require('fs');3fse.copy('source.txt', 'destination.txt', function (err) {4 if (err) return console.error(err);5 console.log("success!");6});7fs.readFile('destination.txt', function (err, data) {8 if (err) throw err;9 console.log(data.toString());10});11var fse = require('fs-extra');12var fs = require('fs');13fs.readFile('source.txt', function (err, data) {14 if (err) throw err;15 console.log(data.toString());16});17fse.copy('source.txt', 'destination.txt', function (err) {18 if (err) return console.error(err);19 console.log("success!");20});21fs.readFile('destination.txt', function (err, data) {22 if (err) throw err;23 console.log(data.toString());24});25var fs = require('fs');26fs.readFile('destination.txt', function (err, data) {27 if (err) throw err;28 console.log(data.toString());29});
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!