Javascript Programming Javascript Code Samples



Filters


Connect to Mongo DB and insert documents in Node JS
kishore_kumar | 5 years
const mongodb = require("mongodb")
const mongo_client = mongodb.MongoClient

javascript node js mongodb
Load native javascript inside webview in react-native
harika | 4 years, 3 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
How to use async-await with promises in nodejs
harika | 4 years, 7 months
const mul = (a, b) => {
  return new Promise((resolve, reject)=> {
    setTimeout(()=>{
nodejs javascript async
Run shell files in javascript
harika | 5 years, 10 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 | 5 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
How to Connect to a mongodb database using mongodb in nodejs
harika | 4 years, 7 months
const {MongoClient, ObjectID} = require("mongodb");
const ConnectionURL = "mongodb://127.0.0.1:2701
nodejs javascript nodemon
Dynamic templating using express and handlebars
harika | 4 years, 7 months
//app.js
const path = require("path");
const express = require("express")
express dynamic templating javascript
Load html inside webview using react native
harika | 4 years, 3 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
Create webserver using expressjs
harika | 4 years, 7 months
//server.js
const express = require("express")
const app = express()
Prerequisites : express suppose to be installed If not try npm i express inside the project folde
nodejs route javascript
display state inside any html tag
harika | 5 years, 10 months
import React from 'react'
export default class StateProps extends React.Component {

Whatever html tag it is just wrap it inside curly braces ({}) as a value.
javascript react js
Prev Next