Javascript Code Samples



Filters


How to loop through each value in javascript object with jquery
kishore_kumar | 6 years, 4 months
var my_obj = {
    "one": "value1",
    "two": "value2",
jquery javascript
Adjust browser height and width according to device / Screen height and width in electron app
harika | 6 years, 3 months
import electron from 'electron';
const screenElectron = electron.screen;
const mainScreen = screen
Add the piece of code while creating window in main.js and check the difference. Happy Coding :-)
javascript electron js
How to use async-await with promises in nodejs
harika | 5 years, 6 months
const mul = (a, b) => {
  return new Promise((resolve, reject)=> {
    setTimeout(()=>{
nodejs javascript async
Load native javascript inside webview in react-native
harika | 5 years, 2 months
import React, { Component } from 'react';
import {View,  WebView} from 'react-native-webview';

install react-native-webview using npm npm i react-native-webview --save try to load the compo
html react-native webview
Connect to Mongo DB and insert documents in Node JS
kishore_kumar | 5 years, 11 months
const mongodb = require("mongodb")
const mongo_client = mongodb.MongoClient

javascript node js mongodb
Dynamic templating using express and handlebars
harika | 5 years, 6 months
//app.js
const path = require("path");
const express = require("express")
express dynamic templating javascript
How to Connect to a mongodb database using mongodb in nodejs
harika | 5 years, 6 months
const {MongoClient, ObjectID} = require("mongodb");
const ConnectionURL = "mongodb://127.0.0.1:2701
nodejs javascript nodemon
Run shell files in javascript
harika | 6 years, 9 months
//JS Code
function runShellScript(){
    const process = require('child_process'); 
keep the function code inside the js file wherever you want to use. and keep the shell file provided
javascript shell node js
Compress files synchronously in javascript
harika | 6 years, 5 months
const tar = require('tar');
  tar.c(
    {
try to install 'tar' using npm and then try. Happy Coding :-)
node js javascript react js
Load html inside webview using react native
harika | 5 years, 2 months
// html.js
module.exports = function() { return `
<html>
Install react-native-webview using npm npm i react-native-webview --save try to seperate th
html react-native webview
Prev Next