GithubHelp home page GithubHelp logo

Comments (3)

Aymkdn avatar Aymkdn commented on June 11, 2024

As you said, it's a client side library.... so it's not made to work with Node.

In the coming weeks/months I'll experiment Node with Sharepoint, so it's possible that I'll evolve SharepointPlus to work on Node.

from sharepointplus.

m-o-leary avatar m-o-leary commented on June 11, 2024

Hey - I've got this up and running in a kind of hacky fashon:
(I forgot to mention it's a React app I am building so node is just for dev)

I downloaded the nanoajax and sharepointplus libs and stored them in the my project somewhere (public folder)

Then where I needed to import the data I used the following:

import '../../../public/js/nanoajax.min'
let $SP = require('../../../public/js/sharepointplus-3.13.min').$SP

loadData() {
    return new Promise((resolve, reject) => {
      $SP().list(_LIST,_DATAURL)
      .get({
        fields:"1, 2, 3, 4, 5",
        where:'1 <> "something"',
        orderby:"1"
      },function(data,error) {
        if(error) {
          reject(error)
        }
        let _LISTGROUP = data.map((item) => {
            return {
              '1': item.getAttribute("1"),
              '2':item.getAttribute("2"),
              '3':item.getAttribute("3"),
              '4':parseInt(item.getAttribute("4"),10),
              '5': item.getAttribute("5")
            }
          })
          resolve(_LISTGROUP)
      })
    })
  }

This is working fine in the browser (IE11 only, I get CORS issues in chrome) from a create-react-app setup

from sharepointplus.

Aymkdn avatar Aymkdn commented on June 11, 2024

The v4.0 will be compatible with NodeJS from a server side perspective.

from sharepointplus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.